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 delta_v_0_list = [cs * 0.001 for cs in cs_g_list]
33
34 bmin = (-0.5, -0.5 / 4, -0.5 / 4)
35 bmax = (0.5, 0.5 / 4, 0.5 / 4)
36
37 N_target = 1e3

Use shamrock documentation style for matplotlib

41 shamrock.matplotlib.set_shamrock_mpl_style()

Do setup

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

Field recovery for plots

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

Analytics

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

Curve fitting

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

Perform the simulation

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_tvi(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
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(-1e-3, +1e-3)
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_tvi_{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     plt.figure(dpi=150)
427     plt.plot(t_arr, rho_t_list, ".", label=r"$\delta \rho (t)$")
428     plt.plot(t_arr, eps_t_list, ".", label=r"$\delta \epsilon (t)$")
429     plt.plot(t_arr, vx_t_list / cs, ".", label=r"$\delta v_x / c_s (t)$")
430     plt.plot(t_arr, rho_t_list_analytic, "-", label=r"$\delta \rho (t)$ analytic")
431     plt.plot(t_arr, eps_t_list_analytic, "-", label=r"$\delta \epsilon (t)$ analytic")
432     plt.plot(t_arr, vx_t_list_analytic / cs, "-", label=r"$\delta v_x / c_s(t)$ analytic")
433     plt.xlabel("$t$ [code unit]")
434     plt.ylabel("$\delta$ fields [code unit]")
435     plt.title(f"cs={cs:.6g}")
436     plt.legend(fontsize=12, loc="upper right")
437     plt.savefig(f"_to_trash/dustywave_tvi_scan_{ics:04}.png")
  • cs=0.0001
  • cs=0.00316228
  • cs=0.1
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "dust_config": {
            "drag_mode": {
                "stopping_times": [
                    1.0
                ],
                "type": "constant_stopping_times"
            },
            "mode": {
                "ndust": 1,
                "pure_diffusion_mode": false,
                "type": "monofluid_tvi"
            }
        },
        "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"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": 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 = 1536 ( 1.5e+03 ) Ntotal = 1536 ( 1.5e+03 rank min = 1.0e+06 max = 1.5e+03) rate = 1.536000e+03 N.s^-1
SPH setup: the generation step took : 0.002459385 s
SPH setup: final particle count = 1536 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     : 18.50 us   (82.5%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (0.2%)
   patch tree reduce : 791.00 ns  (0.1%)
   gen split merge   : 752.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.1%)
   LB compute        : 831.83 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.5%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         1536 / 1536 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.014075773000000001 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.018649661 s
1.0000000000000001e-07
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 376.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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: 1.6699218749999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.024494414403244815 unconverged cnt = 1536
Warning: High interface/patch volume 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.9160156249999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0269438558435693 unconverged cnt = 1536
Warning: High interface/patch volume 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.9160156249999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.029638241427926232 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1360677083333335
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03260206557071886 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.249348958333333
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03586227212779075 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.169921875
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03944849934056983 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1162082920915354e-25,0,0)
    sum a = (6.127687792412431e-26,-4.257388838013744e-26,9.982316122767382e-26)
    sum e = 2.3984426662425316e-16
    sum de = 4.391120273202898e-32
Info: cfl dt = 0.3962864696184797 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    | 6.3110e+03 | 1536 |      1 | 2.434e-01 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
[-3.33066907e-16-9.99999827e-01j -4.15670578e-04-8.63910035e-08j
  4.15670578e-04-8.63910035e-08j  0.00000000e+00+0.00000000e+00j]
k=5.878469308107144 cs=0.0001 ts=1 epsilon_0=0.5
eigenval = [-0.00041567-8.63910035e-08j  0.00041567-8.63910035e-08j
  0.        +3.38962557e-21j]
eigenvec = [[ 8.16496569e-01+0.00000000e+00j  8.16496569e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.52689790e-08-1.69696786e-04j  3.52689790e-08+1.69696786e-04j
   4.47213595e-01-7.44689109e-17j]
 [-5.77350248e-01-1.19993751e-04j  5.77350248e-01-1.19993751e-04j
  -1.48925702e-16-4.21956156e-15j]]
15115.782021647561
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 : 11.872556415 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001452739 s
sph::RenderFieldGetter compute custom field took :  0.000946416 s
offset_rho=0.999981, ampl_rho=2.46613e-16, phi_rho=3.33873 rad
offset_eps=0.500009, ampl_eps=1.29523e-16, phi_eps=0.216429 rad
offset_vx=0, ampl_vx=1e-07, phi_vx=4.71239 rad
eigenval = [-0.00041567-8.63910035e-08j  0.00041567-8.63910035e-08j
  0.        +3.38962557e-21j]
eigenvec = [[ 8.16496569e-01+0.00000000e+00j  8.16496569e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.52689790e-08-1.69696786e-04j  3.52689790e-08+1.69696786e-04j
   4.47213595e-01-7.44689109e-17j]
 [-5.77350248e-01-1.19993751e-04j  5.77350248e-01-1.19993751e-04j
  -1.48925702e-16-4.21956156e-15j]]
eigenvec=[[ 8.16496569e-01+0.00000000e+00j  8.16496569e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.52689790e-08-1.69696786e-04j  3.52689790e-08+1.69696786e-04j
   4.47213595e-01-7.44689109e-17j]
 [-5.77350248e-01-1.19993751e-04j  5.77350248e-01-1.19993751e-04j
  -1.48925702e-16-4.21956156e-15j]]
v=[2.46613384e-16+0.j    1.29523479e-16+0.j    0.00000000e+00-0.001j]
c=[ 3.59981262e-07+8.66025360e-04j  3.59981262e-07-8.66025360e-04j
 -6.57232849e-07-1.25852122e-22j]
coefs=[ 3.59981262e-07+8.66025360e-04j  3.59981262e-07-8.66025360e-04j
 -6.57232849e-07-1.25852122e-22j]
coefs=[ 3.59981262e-07+8.66025360e-04j  3.59981262e-07-8.66025360e-04j
 -6.57232849e-07-1.25852122e-22j]
decomp=[2.46613325e-16-1.08532783e-19j 1.29523514e-16+8.32472302e-27j
 4.49393043e-23-1.00000000e-03j]
rho_t_ampl=2.46613e-16, rho_t_phi=3.33873 rad
eps_t_ampl=1.29523e-16, eps_t_phi=0.216429 rad
vx_t_ampl=1e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 377.89s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 0, dt = 0.3962864696184797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.05 us   (2.6%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 363.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.464833168366142e-25,-1.6871455927731385e-26,3.955856814907121e-26)
    sum a = (-7.367134854903336e-26,1.5210141487122563e-26,2.7465865427982804e-26)
    sum e = 2.3984426662425335e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 13.473738970139989 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    | 3.0288e+04 | 1536 |      1 | 5.071e-02 | 0.0% |   1.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28131.65964133072 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3962864696184797, dt = 13.473738970139989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 287.94 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.290520730228839e-25,1.995155354511406e-25,3.952893608629024e-25)
    sum a = (3.288916438300105e-26,-3.121225754565391e-26,-3.5358401133919665e-27)
    sum e = 2.3984426662457585e-16
    sum de = -2.2340787354891936e-32
Info: cfl dt = 22.191984856320012 cfl multiplier : 0.56                        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0640e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967572.7139803795 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.870025439758468, dt = 22.191984856320012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 317.12 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.348624876274606e-25,-8.0588807387417e-25,1.0796760656532686e-25)
    sum a = (-4.718449270958107e-26,9.550371775630175e-26,-3.101539815381482e-26)
    sum e = 2.398442678075755e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 28.004057700603056 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    | 3.0564e+04 | 1536 |      1 | 5.026e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1589700.588848414 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 36.06201029607848, dt = 28.004057700603056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.8%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 284.28 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2697249752549213e-24,3.2746430166161484e-24,-1.0655023608870145e-24)
    sum a = (9.037138735762448e-26,-6.606229444877548e-26,3.220068778181786e-26)
    sum e = 2.39844278583154e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 31.87867479967768 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    | 3.0531e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2003879.7624961615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 64.06606799668154, dt = 31.87867479967768 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 289.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0103978774869586e-24,-1.0935871553013473e-24,8.46166352309389e-25)
    sum a = (6.877935275505021e-26,3.1904376719652246e-26,2.8398735769066705e-26)
    sum e = 2.3984431301717354e-16
    sum de = 3.235562306570556e-32
Info: cfl dt = 34.46165822830672 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    | 3.0671e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2291621.8692858135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 95.94474279635922, dt = 34.46165822830672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.6%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 306.12 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6556582426013776e-24,1.5674154297870955e-24,1.7642332825897213e-24)
    sum a = (2.3652993377030176e-27,6.369583052247971e-26,2.894463612993177e-26)
    sum e = 2.398443837485479e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 36.183559276721745 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.0808e+04 | 1536 |      1 | 4.986e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2488336.8757086676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 130.40640102466594, dt = 36.183559276721745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 286.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4917436819510335e-24,4.4199493774908905e-24,2.820959555571717e-24)
    sum a = (2.647843627189726e-26,1.058781826632064e-26,-1.0793527898321875e-26)
    sum e = 2.398444988784405e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 37.3314126227044 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.0580e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2593370.426093879 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 166.5899603013877, dt = 37.3314126227044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 320.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5021415594379925e-24,3.8543894793245736e-24,1.6990878051125155e-24)
    sum a = (-1.341681740362599e-25,-4.028575290338533e-26,-1.9311797890304513e-26)
    sum e = 2.39844662262551e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 38.09657432108934 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.0897e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2703324.2912487728 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 203.92137292409208, dt = 38.09657432108934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.8%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 283.26 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6929666336732283e-24,1.3700475724882675e-24,8.043749355595644e-25)
    sum a = (-1.0065034860915094e-26,-1.4169124172616413e-25,3.0130429371303407e-26)
    sum e = 2.3984487492534213e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 38.60661451158161 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    | 3.0634e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2735289.5075645577 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 242.01794724518143, dt = 38.60661451158161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 300.39 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7987770482778052e-24,-6.031770527354803e-24,2.9093985501020037e-24)
    sum a = (1.5065261515431304e-25,1.1168775995767416e-25,-5.141456783336179e-26)
    sum e = 2.398451363776872e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 38.94657946051907 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.0667e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2774867.2888276456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 280.62456175676306, dt = 38.94657946051907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 282.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.417126899807333e-24,3.2091423790630535e-24,-6.671111376626781e-25)
    sum a = (-9.483800893971008e-26,4.669439504297689e-26,2.1532307118866314e-26)
    sum e = 2.398454454988127e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 39.17316630783152 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    | 3.0402e+04 | 1536 |      1 | 5.052e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2775162.431781283 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 319.5711412172821, dt = 39.17316630783152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 296.97 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1162082920915354e-25,3.772678074439717e-24,1.5968931409577359e-24)
    sum a = (6.656420552547441e-26,1.0290035190238567e-26,5.470905096423966e-26)
    sum e = 2.3984580102141297e-16
    sum de = 2.1570415377137042e-32
Info: cfl dt = 39.32417288806619 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    | 3.0503e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2800545.231452742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 358.74430752511364, dt = 19.150243016075365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 302.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (60.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.184710315624262e-24,3.2566991238740333e-24,3.2944038142055543e-24)
    sum a = (-2.1796273760403235e-26,2.859889805383609e-26,-9.25844889200318e-26)
    sum e = 2.398450080962356e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.42488405745517 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    | 3.0235e+04 | 1536 |      1 | 5.080e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1357032.0306254525 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 14                                                      [SPH][rank=0]
Info: time since start : 12.931640946000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001062713 s
sph::RenderFieldGetter compute custom field took :  0.000954451 s
rho_t_ampl=0.000218387, rho_t_phi=3.14159 rad
eps_t_ampl=-8.94168e-09, eps_t_phi=6.28319 rad
vx_t_ampl=9.87496e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 755.79s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 377.894550541189, dt = 39.42488405745517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.04 us    (2.3%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 375.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9626916089281496e-24,4.5595146772268896e-24,-1.7660824687263973e-24)
    sum a = (-5.595345655115071e-26,-8.562024588340302e-27,-9.635542480634862e-26)
    sum e = 2.3984628961026605e-16
    sum de = 2.3881531310401725e-32
Info: cfl dt = 39.4919140082088 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    | 2.9609e+04 | 1536 |      1 | 5.188e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2735896.9160596794 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 417.3194345986442, dt = 39.4919140082088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.8%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 291.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.52293731441191e-25,3.488851235696088e-24,-5.645676974456162e-24)
    sum a = (-5.864004910947004e-27,-8.803775284673933e-26,3.7380490341368667e-26)
    sum e = 2.398468190710626e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.53656477739516 cfl multiplier : 0.997739178322084            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0665e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2838322.5087897046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 456.811348606853, dt = 39.53656477739516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 284.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0581041460457677e-24,-1.5611930224903683e-24,-1.5270371662526532e-24)
    sum a = (6.895372294513343e-26,9.104224399478622e-26,9.810432579507328e-26)
    sum e = 2.3984732791041073e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 39.566297601186804 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    | 3.0570e+04 | 1536 |      1 | 5.025e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832743.834262814 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 496.34791338424816, dt = 39.566297601186804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.7%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 279.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.184710315624262e-24,5.581123182851708e-24,3.554993711092969e-24)
    sum a = (-4.0660545065332967e-26,-4.355392472552038e-26,6.278608973812172e-26)
    sum e = 2.398478787620589e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.58608983704773 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    | 3.1111e+04 | 1536 |      1 | 4.937e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2885045.4885879927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 535.9142109854349, dt = 39.58608983704773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.8%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 280.32 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.232416584183071e-25,1.1942392319715543e-24,5.341743580693963e-24)
    sum a = (1.3474294984801574e-25,-7.396639605400906e-26,-1.8379341925175305e-26)
    sum e = 2.398484709565674e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.59925971166187 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    | 3.0508e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830526.366629886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 575.5003008224827, dt = 39.59925971166187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 326.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.311316485202755e-24,-2.3367139283009482e-24,3.0074242117262227e-24)
    sum a = (3.1916202940418603e-26,-1.5859364381608637e-25,6.115723393155344e-26)
    sum e = 2.3984910380347043e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 39.60801936942591 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    | 3.0400e+04 | 1536 |      1 | 5.053e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821483.0931692813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 615.0995605341445, dt = 39.60801936942591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.4%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 329.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.51253943692495e-24,-1.0293889680878838e-23,7.004535879831387e-24)
    sum a = (-9.11633186375858e-26,-6.690435605469709e-26,-9.779841614011842e-27)
    sum e = 2.398497765951723e-16
    sum de = 2.7733391199176196e-32
Info: cfl dt = 39.61384357021006 cfl multiplier : 0.9997022786267765           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0520e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833221.43745179 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 654.7075799035705, dt = 39.61384357021006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.3%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 342.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8568811943235727e-24,-1.1128410879767985e-23,5.212280232882214e-24)
    sum a = (7.554749939235468e-26,7.107133563370674e-26,1.5750491307326336e-26)
    sum e = 2.3985048859930006e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 39.61771548620921 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    | 3.0273e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2810666.9406862706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 694.3214234737806, dt = 39.61771548620921 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 355.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.099695655993603e-24,-5.579864649859394e-24,6.341956023584703e-24)
    sum a = (7.672288363661939e-27,-1.447346099120567e-25,4.317385925385171e-26)
    sum e = 2.398512390501049e-16
    sum de = 3.8518598887744717e-32
Info: cfl dt = 39.62029056530899 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    | 2.2974e+04 | 1536 |      1 | 6.686e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2133239.741954422 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 733.9391389599898, dt = 21.849962122388206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.4%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 332.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.041591509947834e-24,-1.3017147204375463e-23,7.82852880744824e-24)
    sum a = (2.031735622228995e-26,-4.996994581195791e-26,1.608390281354473e-26)
    sum e = 2.3984767604406467e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.62202301081053 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    | 2.3022e+04 | 1536 |      1 | 6.672e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1178969.845966821 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 24                                                      [SPH][rank=0]
Info: time since start : 13.795602764000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000893667 s
sph::RenderFieldGetter compute custom field took :  0.0007876090000000001 s
rho_t_ampl=0.000431317, rho_t_phi=3.14159 rad
eps_t_ampl=-2.62303e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.50307e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1133.68s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 755.789101082378, dt = 39.62202301081053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (2.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 372.42 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.147401924552412e-24,-1.396177591287758e-23,8.169848313771098e-24)
    sum a = (-8.292271261735631e-27,-1.1045455504273948e-25,-8.69326992881439e-26)
    sum e = 2.398522519243532e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.623159025360174 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    | 2.9250e+04 | 1536 |      1 | 5.251e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2716308.6923423097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 795.4111240931885, dt = 39.623159025360174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 321.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.147401924552412e-24,-1.9536617732539297e-23,2.6844370558890092e-24)
    sum a = (1.7145110393812892e-25,-1.0733027268410083e-25,-3.6044121032547316e-28)
    sum e = 2.398532080796634e-16
    sum de = 0
Info: cfl dt = 39.6239250089176 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    | 3.0031e+04 | 1536 |      1 | 5.115e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2788915.9886352527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 835.0342831185487, dt = 39.6239250089176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.8%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 269.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7670339238964322e-23,-2.3727518873363988e-23,4.38528813490216e-24)
    sum a = (9.322992829783144e-26,2.485607547583402e-26,-4.4343811243682805e-26)
    sum e = 2.398540884953291e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.62444611089916 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    | 3.0403e+04 | 1536 |      1 | 5.052e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823487.6291684806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 874.6582081274663, dt = 39.62444611089916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 280.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.968073711645128e-23,-2.0123730235243506e-23,1.756792298003956e-24)
    sum a = (-3.936891402767944e-26,-5.0161787393066823e-26,-6.371619456315438e-26)
    sum e = 2.3985500315180823e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.62480863229434 cfl multiplier : 0.9999825750636614           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0150e+04 | 1536 |      1 | 5.095e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2800027.0643473268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 914.2826542383655, dt = 39.62480863229434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 337.12 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6188993434500245e-23,-2.3597659096107702e-23,-1.1517596977796932e-24)
    sum a = (-7.155635948600528e-26,3.4330476096066635e-26,-2.5664055940549415e-26)
    sum e = 2.3985595127209955e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 39.62507010880459 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    | 3.0313e+04 | 1536 |      1 | 5.067e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2815180.4315628232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 953.9074628706599, dt = 39.62507010880459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 297.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.343792265478125e-23,-2.0563319906251512e-23,-1.4147953582148422e-24)
    sum a = (5.349935757960901e-26,-5.952883695027493e-26,-4.161724836755767e-26)
    sum e = 2.39856931833642e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 39.625268892490105 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    | 3.0273e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811490.633371381 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 993.5325329794645, dt = 39.625268892490105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 299.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6823855922127707e-23,-2.4781777187995143e-23,-3.3799631995349794e-24)
    sum a = (-7.880240960724157e-26,3.0830099222896e-26,1.938281033774443e-26)
    sum e = 2.398579437685768e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 39.62543054489009 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    | 2.8327e+04 | 1536 |      1 | 5.422e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2630799.41665373 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1033.1578018719545, dt = 39.62543054489009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.4%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 355.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2591439337944636e-23,-2.1769851832989236e-23,-1.4033391304044016e-24)
    sum a = (-3.6591907296724365e-26,2.0704169130125125e-26,-4.4323742833891384e-26)
    sum e = 2.398589859733813e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.625572099275225 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    | 2.3871e+04 | 1536 |      1 | 6.435e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2216969.226370913 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1072.7832324168446, dt = 39.625572099275225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 299.90 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2379818508735482e-23,-2.1150115959351495e-23,-4.421892596756758e-24)
    sum a = (1.1788716480663723e-25,-1.2113353877831383e-25,5.196962688210283e-27)
    sum e = 2.398600573101843e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 39.625704902139525 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    | 2.3786e+04 | 1536 |      1 | 6.458e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2209062.357505972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1112.4088045161197, dt = 21.274847107447385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 290.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6823855922127707e-23,-2.653735402167983e-23,-3.3301848666050606e-24)
    sum a = (1.057845819838237e-25,8.525736094508375e-27,2.3929362011273473e-26)
    sum e = 2.398514612706969e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.625792060980714 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    | 2.4249e+04 | 1536 |      1 | 6.334e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209150.628283864 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 34                                                      [SPH][rank=0]
Info: time since start : 14.673666607000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008482730000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008082670000000001 s
rho_t_ampl=0.000633463, rho_t_phi=3.14159 rad
eps_t_ampl=-4.99994e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.89366e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1511.58s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 1133.6836516235671, dt = 39.625792060980714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.99 us    (2.0%)
   patch tree reduce : 1.49 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 416.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.063303084789247e-23,-2.4820220971292103e-23,-2.1827004776182354e-24)
    sum a = (7.100095813981427e-26,1.7875747852652904e-26,5.518626373489427e-26)
    sum e = 2.398614413194984e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.625916898102055 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    | 2.3421e+04 | 1536 |      1 | 6.558e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2175201.638907804 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1173.309443684548, dt = 39.625916898102055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 345.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2325997481565698e-23,-2.3926510780102484e-23,6.233955671427376e-25)
    sum a = (-3.532610887982391e-26,8.816153468008047e-26,4.5310036732082765e-26)
    sum e = 2.398627366066721e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 39.62605304662749 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    | 2.3893e+04 | 1536 |      1 | 6.429e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2218995.126819402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1212.93536058265, dt = 39.62605304662749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 292.53 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8781348592312376e-23,-1.904055633802628e-23,2.2231762109928597e-24)
    sum a = (-1.5127582712998085e-25,-2.224489796165776e-26,-2.728062885197442e-26)
    sum e = 2.3986390194206694e-16
    sum de = 1.3096323621833204e-32
Info: cfl dt = 39.62619860115012 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    | 2.4489e+04 | 1536 |      1 | 6.272e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2274374.3630702784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1252.5614136292775, dt = 39.62619860115012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 341.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1744956021108022e-23,-2.210958954482324e-23,-2.9609218842210195e-25)
    sum a = (3.045665986787012e-26,-5.384346562092216e-26,6.292042503423499e-26)
    sum e = 2.3986509030401135e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.62635500670776 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.0344e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818174.9731691866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1292.1876122304275, dt = 39.62635500670776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 304.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5977372605291092e-23,-2.4869270659946996e-23,3.984377348821609e-24)
    sum a = (-8.276771689283789e-26,-2.419521447359209e-25,-4.2577368056989534e-26)
    sum e = 2.398663009339286e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.62652322032288 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.0527e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835176.917519165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1331.8139672371353, dt = 39.62652322032288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 275.23 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0422325838550812e-23,-3.818408796052949e-23,2.0693778412274116e-25)
    sum a = (1.4254440131544302e-25,3.5731623003159097e-26,9.214971553403973e-26)
    sum e = 2.398675325167482e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.62670386287504 cfl multiplier : 0.9999998656999756           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0201e+04 | 1536 |      1 | 5.086e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804862.9438792854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1371.4404904574583, dt = 39.62670386287504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 311.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.163822978663595e-23,-3.126618154802548e-23,6.5279102258027114e-24)
    sum a = (-9.738898023907579e-27,-5.995616311435096e-26,8.842712521745978e-27)
    sum e = 2.398687837036947e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.62689732971014 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.0241e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808665.602294461 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1411.0671943203333, dt = 39.62689732971014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.8%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 272.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7141287165941436e-23,-3.5537960588081044e-23,5.227728517979744e-24)
    sum a = (-3.613983643354563e-26,-2.144401828961747e-25,-1.963261734895803e-26)
    sum e = 2.3987005312413366e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 39.62710386456319 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.0218e+04 | 1536 |      1 | 5.083e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2806507.5512480135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1450.6940916500434, dt = 39.62710386456319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.8%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 295.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.544832053226821e-23,-4.7096531021378067e-23,3.8855502645521236e-24)
    sum a = (-8.788257580194584e-26,7.582773854930105e-26,-1.584253387910286e-26)
    sum e = 2.3987133938759904e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.627323608846005 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.0246e+04 | 1536 |      1 | 5.078e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2809087.347570108 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1490.3211955146066, dt = 21.25700665014938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 288.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.211529247222404e-23,-3.9733331579565415e-23,3.623880432186011e-24)
    sum a = (-8.217356661551726e-26,6.856087916727991e-26,-1.346598282373107e-26)
    sum e = 2.398563247296294e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 39.627450990986254 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    | 3.0012e+04 | 1536 |      1 | 5.118e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1495214.9537497372 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 15.543499645 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009219600000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008069560000000001 s
rho_t_ampl=0.000819775, rho_t_phi=3.14159 rad
eps_t_ampl=-7.95689e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.06199e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1889.47s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 1511.578202164756, dt = 39.627450990986254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.01 us    (2.2%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 381.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (77.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.205506070598179e-24,-3.7093696267619975e-23,3.115517038587058e-24)
    sum a = (-1.465226249114159e-25,5.242971616636391e-26,-4.6521705899101767e-26)
    sum e = 2.3987297452854053e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.627687326615366 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    | 2.3329e+04 | 1536 |      1 | 6.584e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2166697.3018191936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1551.2056531557423, dt = 39.627687326615366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 304.94 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.877676949297491e-25,-3.5335589451640284e-23,6.170124002471569e-25)
    sum a = (-1.3084222411430208e-25,-2.853564565840451e-26,-4.467463077185832e-26)
    sum e = 2.398744778054622e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.62794072517921 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    | 2.3985e+04 | 1536 |      1 | 6.404e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2227625.014431194 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1590.8333404823577, dt = 39.62794072517921 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 323.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6981655724167078e-24,-3.807060525756125e-23,-1.1167535620946694e-24)
    sum a = (-8.155358371744357e-26,-8.074996279818396e-26,-1.3527030743563794e-25)
    sum e = 2.398758132080471e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.62820744307595 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    | 2.4775e+04 | 1536 |      1 | 6.200e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2301092.2951266505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1630.461281207537, dt = 39.62820744307595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.7%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 275.66 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.184710315624262e-24,-4.23052337598963e-23,-8.272333418435684e-24)
    sum a = (9.090499243005509e-26,-1.3810328440091734e-25,-4.2009836568836546e-26)
    sum e = 2.3987715795701314e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.62848741332046 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    | 2.9908e+04 | 1536 |      1 | 5.136e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2777781.1769080334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1670.089488650613, dt = 39.62848741332046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 319.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6452603651144194e-24,-4.891423530797389e-23,-8.089247055266322e-24)
    sum a = (-1.3587958516115083e-26,8.373061269510737e-27,-2.6755031675891243e-26)
    sum e = 2.398785115447943e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.628780576673854 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    | 2.9361e+04 | 1536 |      1 | 5.231e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2727036.325972792 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1709.7179760639335, dt = 39.628780576673854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 298.99 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.348624876274606e-25,-4.568028826482812e-23,-8.847253913025126e-24)
    sum a = (-3.611400381279256e-26,2.6996164941043513e-25,-8.152092584012526e-27)
    sum e = 2.398798725000304e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 39.62908686470807 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    | 2.9460e+04 | 1536 |      1 | 5.214e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2736249.434912924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1749.3467566406073, dt = 39.62908686470807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 267.99 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2272176454395914e-24,-2.979855125064249e-23,-8.801708002489612e-24)
    sum a = (-4.326963976139309e-26,-1.5856533420270614e-25,1.5766161828540316e-27)
    sum e = 2.398812393311787e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.62940620150909 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    | 2.9330e+04 | 1536 |      1 | 5.237e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2724194.0966939535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1788.9758435053154, dt = 39.62940620150909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.8%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 279.29 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.23761552292655e-24,-4.45734444215765e-23,-8.546457716956972e-24)
    sum a = (-1.041054616348741e-25,5.523728245880801e-27,2.5339386012656802e-26)
    sum e = 2.3988261054010667e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.629738504979166 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    | 2.9497e+04 | 1536 |      1 | 5.207e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2739716.122945801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1828.6052497068245, dt = 39.629738504979166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 271.21 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0210705009341658e-23,-4.110305462975547e-23,-7.071412246368823e-24)
    sum a = (2.82867197246122e-26,-7.821027750341727e-27,-4.9532536435242557e-26)
    sum e = 2.3988398462378685e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 39.630083687714915 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    | 3.0103e+04 | 1536 |      1 | 5.103e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2796019.1998568587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1868.2349882118035, dt = 21.23776449414163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 275.16 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.089297778506643e-24,-4.153376514464901e-23,-9.606949943965216e-24)
    sum a = (3.203244973380742e-26,-9.294294718004888e-26,4.6884055166238715e-27)
    sum e = 2.3986169287668494e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 39.63027728506795 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    | 3.0370e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1511707.050598696 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 54                                                      [SPH][rank=0]
Info: time since start : 16.419535775 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010483550000000002 s
sph::RenderFieldGetter compute custom field took :  0.0010013770000000001 s
rho_t_ampl=0.000985596, rho_t_phi=3.14159 rad
eps_t_ampl=-1.14211e-07, eps_t_phi=6.28319 rad
vx_t_ampl=7.02885e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2267.37s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 1889.4727527059451, dt = 39.63027728506795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.33 us    (2.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 350.13 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.025994693717397e-24,-4.6120937880556403e-23,-8.84538133540358e-24)
    sum a = (6.354824705255343e-26,-8.629354167243886e-26,-4.3261378856513206e-26)
    sum e = 2.398857095131244e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.63063880154651 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    | 2.8488e+04 | 1536 |      1 | 5.392e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2646029.2289752862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1929.103029991013, dt = 39.63063880154651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 283.09 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6981655724167078e-24,-4.9409059158498954e-23,-1.1509989040155846e-23)
    sum a = (1.0196135411236927e-25,9.049137092537761e-26,-5.896721092738129e-26)
    sum e = 2.398872713390041e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.631016196156985 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    | 2.9462e+04 | 1536 |      1 | 5.214e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2736523.3878477253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1968.7336687925595, dt = 39.631016196156985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 279.02 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8568811943235727e-24,-4.2319796899845845e-23,-1.4158135610401584e-23)
    sum a = (7.021306320684562e-26,-9.783841801652103e-26,8.746038656844502e-26)
    sum e = 2.398886449741055e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 39.63140615127935 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    | 3.0051e+04 | 1536 |      1 | 5.111e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791306.662943242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2008.3646849887164, dt = 39.63140615127935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 308.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4440374133922246e-24,-4.9928908360378556e-23,-7.790420264198747e-24)
    sum a = (-5.192356771367171e-27,-4.59985698155902e-26,3.3846304486784975e-26)
    sum e = 2.398900131884586e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.631808535369814 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    | 3.0078e+04 | 1536 |      1 | 5.107e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2793853.2112125447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2047.9960911399958, dt = 39.631808535369814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 288.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2801228527418798e-24,-5.0724482039866055e-23,-7.511430736349453e-24)
    sum a = (-6.463321712418239e-26,-8.709678103077181e-26,-1.21694234847549e-25)
    sum e = 2.3989137593088376e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.63222323825166 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    | 3.0223e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807283.120423726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2087.6278996753654, dt = 39.63222323825166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.8%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 287.72 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (60.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.819572803251722e-25,-5.499081362602032e-23,-1.541662025582839e-23)
    sum a = (8.710759717935372e-26,1.9588359160094926e-25,3.3776838563070043e-26)
    sum e = 2.398927317191301e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.632650146433875 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    | 3.0086e+04 | 1536 |      1 | 5.105e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2794661.9767284393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2127.260122913617, dt = 39.632650146433875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 277.02 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.5073404981814716e-24,-4.1619716732049665e-23,-1.0997122485756924e-23)
    sum a = (-3.1799956147029785e-26,4.509871670791244e-26,-7.292356267448395e-26)
    sum e = 2.3989407906633277e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.63308914297069 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    | 3.0098e+04 | 1536 |      1 | 5.103e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2795784.972431258 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2166.892773060051, dt = 39.63308914297069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 313.55 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.486544743207554e-24,-4.282021028368636e-23,-1.6001718382225184e-23)
    sum a = (-3.365990484125086e-26,5.726479631435437e-26,3.383407862612286e-26)
    sum e = 2.3989541649467246e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.63354010751351 cfl multiplier : 0.9999999999820499           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0407e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824543.344658324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2206.5258622030215, dt = 39.63354010751351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 400.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.877676949297491e-25,-4.030960245424732e-23,-1.2545186512814979e-23)
    sum a = (-7.308048411043645e-26,-5.839722499710805e-26,-2.491977474735147e-26)
    sum e = 2.398967425371348e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.63400291635857 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    | 2.9770e+04 | 1536 |      1 | 5.160e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2765376.909468425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2246.159402310535, dt = 21.207900936599344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 280.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4336395359052656e-24,-4.3840256521207665e-23,-1.4237994229095687e-23)
    sum a = (-7.209884452181976e-26,6.092464673448841e-26,4.241002010138793e-27)
    sum e = 2.3986702200082936e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.63425816350093 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    | 2.8601e+04 | 1536 |      1 | 5.370e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1421652.2701672122 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 64                                                      [SPH][rank=0]
Info: time since start : 17.26210832 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000904176 s
sph::RenderFieldGetter compute custom field took :  0.0007586660000000001 s
rho_t_ampl=0.00112678, rho_t_phi=3.14159 rad
eps_t_ampl=-1.53059e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.8201e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2645.26s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 2267.3673032471343, dt = 39.63425816350093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.13 us    (2.1%)
   patch tree reduce : 1.52 us    (0.3%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 413.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.126606169578494e-24,-4.016025761551863e-23,-1.3760685828199367e-23)
    sum a = (2.0511100877937978e-26,-6.579270825216347e-27,-5.216343560888249e-26)
    sum e = 2.3989838657503866e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.63473621260142 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    | 2.3347e+04 | 1536 |      1 | 6.579e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2168755.1805767026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2307.001561410635, dt = 39.63473621260142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 341.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6929666336732283e-24,-4.175894164159834e-23,-1.6945943859579202e-23)
    sum a = (-2.4540989715416974e-26,-1.1978175040348914e-28,4.31505097126146e-26)
    sum e = 2.3989985168719065e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 39.63522844201746 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    | 2.3712e+04 | 1536 |      1 | 6.478e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2202723.3478691527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2346.6362976232367, dt = 39.63522844201746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 300.26 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.121407230835015e-24,-4.1634874022276526e-23,-1.3346792009631492e-23)
    sum a = (8.726259290387216e-26,-2.3797778405015588e-26,-3.7577069522345246e-26)
    sum e = 2.399011278823261e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.63573208173491 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    | 2.5664e+04 | 1536 |      1 | 5.985e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2384052.8590033962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2386.271526065254, dt = 39.63573208173491 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 283.48 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 35.89 us   (96.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6929666336732283e-24,-4.304767942572752e-23,-1.6436014691907523e-23)
    sum a = (3.929141616542023e-26,5.339515045248426e-26,-1.88299303843645e-26)
    sum e = 2.399023842610807e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.63624696393586 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    | 3.0579e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840647.1588099725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2425.907258146989, dt = 39.63624696393586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.8%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 268.32 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1162082920915354e-24,-3.940114668022409e-23,-1.681083417085013e-23)
    sum a = (-8.677177310956382e-26,7.080408531524693e-26,2.3758329933761362e-26)
    sum e = 2.399036213892576e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.63677294691877 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    | 2.7706e+04 | 1536 |      1 | 5.544e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2573825.585307363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2465.543505110925, dt = 39.63677294691877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.8%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 267.23 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.703364511160187e-24,-3.624978652562589e-23,-1.5025111239800387e-23)
    sum a = (-1.141026858663124e-25,-1.1217957780184435e-25,-4.2241644916479415e-26)
    sum e = 2.3990483792012526e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.63730988605614 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    | 3.0434e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2827278.192275118 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2505.1802780578437, dt = 39.63730988605614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 283.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.888074826784449e-24,-4.432284862580615e-23,-1.8007469418272056e-23)
    sum a = (-6.71648139579833e-26,1.243730824940638e-25,4.393994477307594e-26)
    sum e = 2.3990603251831036e-16
    sum de = 5.7777898331617076e-33
Info: cfl dt = 39.6378461605727 cfl multiplier : 0.9999999999995332            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0601e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2842836.03754793 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2544.8175879439, dt = 39.6378461605727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 317.86 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.015779980203937e-23,-3.470480851809181e-23,-1.4557781458555893e-23)
    sum a = (-2.2500212675924406e-26,-8.605602787908909e-26,-4.0277260466726345e-26)
    sum e = 2.399072038429916e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.63838890477137 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    | 3.0543e+04 | 1536 |      1 | 5.029e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837495.7663243013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2584.4554341044727, dt = 39.63838890477137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.7%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 275.91 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.04752310458531e-23,-4.228632751058265e-23,-1.7823401485639224e-23)
    sum a = (-9.653650375422446e-26,-9.946863234554149e-26,6.272535069213174e-26)
    sum e = 2.39908350624906e-16
    sum de = -6.548161810916602e-33
Info: cfl dt = 39.638942161505796 cfl multiplier : 0.9999999999997925          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0551e+04 | 1536 |      1 | 5.028e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2838249.916948357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2624.0938230092443, dt = 21.16803077907889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 283.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3702448691292692e-23,-4.4657419813489543e-23,-1.4454200551896033e-23)
    sum a = (5.597928917190378e-26,7.512609215273586e-26,6.094391397970912e-26)
    sum e = 2.398717768546349e-16
    sum de = -1.0400021699691074e-32
Info: cfl dt = 39.63924397712026 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    | 3.0744e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1525273.9277426628 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 18.338967971000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001082449 s
sph::RenderFieldGetter compute custom field took :  0.000936126 s
rho_t_ampl=0.00123981, rho_t_phi=3.14159 rad
eps_t_ampl=-1.95143e-07, eps_t_phi=6.28319 rad
vx_t_ampl=4.46596e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3023.16s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 2645.261853788323, dt = 39.63924397712026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.49 us    (2.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 344.30 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.628747729016486e-24,-3.983197021283342e-23,-1.2057284630312713e-23)
    sum a = (-9.790563265413719e-26,4.213897067365652e-26,-2.830216744958008e-26)
    sum e = 2.39909751471416e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.63981104572501 cfl multiplier : 0.999999999999908            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0421e+04 | 1536 |      1 | 5.049e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826220.9782707524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2684.9010977654434, dt = 39.63981104572501 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 306.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7061929354988004e-23,-3.88152886741652e-23,-1.4948000798092503e-23)
    sum a = (2.74084106190078e-26,1.3008343502722587e-25,8.648778129577234e-26)
    sum e = 2.3991097399162036e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.64039022110116 cfl multiplier : 0.9999999999999387           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0543e+04 | 1536 |      1 | 5.029e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837650.022382712 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2724.5409088111683, dt = 39.64039022110116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 308.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3808259105897268e-23,-3.1915873574504e-23,-9.244465459060123e-24)
    sum a = (-1.2952476045589548e-25,8.197387465484723e-26,-1.0294092473621588e-26)
    sum e = 2.399120266021219e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.640979390616074 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    | 3.0799e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861444.7831142927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2764.1812990322696, dt = 39.640979390616074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 289.24 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1294345939171076e-23,-2.9619934823522976e-23,-1.1570768987922887e-23)
    sum a = (1.294214299728832e-26,-1.3794454874863853e-25,9.798205837997786e-27)
    sum e = 2.3991304679271065e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.641578359649706 cfl multiplier : 0.9999999999999728          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0417e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825988.97083222 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2803.8222784228856, dt = 39.641578359649706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 287.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8516822555800934e-23,-3.944676063031882e-23,-1.0784113451776414e-23)
    sum a = (5.600512179265684e-26,-6.4121509234187e-26,7.481304282328369e-27)
    sum e = 2.3991403584720644e-16
    sum de = 4.237045877651919e-33
Info: cfl dt = 39.642186963082935 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    | 3.0885e+04 | 1536 |      1 | 4.973e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2869540.980091058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2843.4638567825355, dt = 39.642186963082935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 272.42 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5051531477501046e-23,-4.052591190412315e-23,-1.0533461005976722e-23)
    sum a = (1.9736122255345863e-26,1.1448070237576005e-26,-2.0920506501969753e-26)
    sum e = 2.3991499268748125e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.64280503322408 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    | 3.0210e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2806888.9498513923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2883.1060437456185, dt = 39.64280503322408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 325.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5263152306710198e-23,-3.857407011972822e-23,-1.1925763513030466e-23)
    sum a = (2.3120195573998098e-26,-1.3274080191060142e-25,-3.7854093301512705e-26)
    sum e = 2.399159162625776e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.643432399738 cfl multiplier : 0.999999999999992              [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0419e+04 | 1536 |      1 | 5.049e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826301.9126134897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2922.748848778843, dt = 39.643432399738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 301.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3728901294943837e-23,-4.669439299957622e-23,-1.3762077141879755e-23)
    sum a = (4.004056216725928e-26,-4.7198619924055405e-26,3.17900545861635e-26)
    sum e = 2.399168055574656e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.64406888969034 cfl multiplier : 0.9999999999999947           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0509e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834729.795287376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2962.3922811785806, dt = 39.64406888969034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 279.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2326913301433194e-23,-4.6870493975249906e-23,-1.1121323493446864e-23)
    sum a = (-4.239133065578869e-26,-3.0114301961385826e-26,-1.0011809527357852e-26)
    sum e = 2.399176595947689e-16
    sum de = 7.318533788671496e-33
Info: cfl dt = 39.64471432759574 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    | 2.9777e+04 | 1536 |      1 | 5.158e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2766721.292796991 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3002.036350068271, dt = 21.120054261240966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.1%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 305.79 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.462828981908274e-23,-4.716810514079084e-23,-1.2161371444242047e-23)
    sum a = (-6.876643644467368e-26,7.937845939101694e-26,1.008821193832217e-26)
    sum e = 2.398754842494188e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.6450632001024 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    | 2.9766e+04 | 1536 |      1 | 5.160e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1473438.2173580404 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 84                                                      [SPH][rank=0]
Info: time since start : 19.17191837 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001159052 s
sph::RenderFieldGetter compute custom field took :  0.000988804 s
rho_t_ampl=0.00132185, rho_t_phi=3.14159 rad
eps_t_ampl=-2.39408e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.0003e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3401.05s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 3023.156404329512, dt = 39.6450632001024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.2%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 391.08 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7829054860871185e-23,-4.286527529059009e-23,-1.1549166872364163e-23)
    sum a = (7.429461728583077e-26,-2.603793837236157e-26,3.2503117496877733e-26)
    sum e = 2.399186796385211e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 39.645720671905266 cfl multiplier : 0.9999999999999986          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9395e+04 | 1536 |      1 | 5.225e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2731356.8812166825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3062.8014675296145, dt = 39.645720671905266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 277.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1824313832061454e-23,-4.5987373544030245e-23,-9.816237181379454e-24)
    sum a = (6.354824705255343e-26,2.231005027823237e-26,-1.2733403146764902e-25)
    sum e = 2.3991953760582574e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.64638793606528 cfl multiplier : 0.9999999999999991           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9651e+04 | 1536 |      1 | 5.180e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2755119.4147887533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3102.4471882015196, dt = 39.64638793606528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 313.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.470032107109621e-24,-4.4144338758247245e-23,-1.8033001070825756e-23)
    sum a = (-2.58326207530705e-28,6.852226267878601e-26,-2.1294516263414354e-26)
    sum e = 2.399202626336296e-16
    sum de = 1.925929944387236e-33
Info: cfl dt = 39.647063543595294 cfl multiplier : 0.9999999999999994          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9528e+04 | 1536 |      1 | 5.202e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2743757.6435305914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3142.093576137585, dt = 39.647063543595294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 276.76 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0633946667759966e-23,-4.051152959251888e-23,-1.677522423208142e-23)
    sum a = (7.349380604248557e-26,1.1563084053094405e-25,-2.681155611707559e-26)
    sum e = 2.399209456834511e-16
    sum de = -4.237045877651919e-33
Info: cfl dt = 39.647747273050435 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9772e+04 | 1536 |      1 | 5.159e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2766517.111527158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3181.7406396811803, dt = 39.647747273050435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 276.41 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5073404981814716e-24,-3.499346222238662e-23,-1.7947609247835065e-23)
    sum a = (-1.697203183476732e-26,-4.265673939093309e-26,4.8203585911356956e-26)
    sum e = 2.39921588787831e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.64843893564773 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0076e+04 | 1536 |      1 | 5.107e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2794755.746085667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3221.3883869542306, dt = 39.64843893564773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 298.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.65000139392415e-24,-3.9822418601309975e-23,-1.454932161894864e-23)
    sum a = (-1.0085055141998723e-25,-3.662712442423539e-26,-7.458383479257404e-26)
    sum e = 2.399221912446516e-16
    sum de = -1.1555579666323415e-33
Info: cfl dt = 39.649138340450875 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0409e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825776.8543080627 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3261.0368258898784, dt = 39.649138340450875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 311.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4654742422733883e-23,-4.1155252669064646e-23,-1.994067117852552e-23)
    sum a = (-3.908475519939567e-26,-1.0821895330943875e-25,-7.781960101215309e-27)
    sum e = 2.399227523912724e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.64984529435926 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0253e+04 | 1536 |      1 | 5.077e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811303.2687836895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3300.6859642303293, dt = 39.64984529435926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 279.39 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4734100233687315e-23,-4.68653209929441e-23,-1.892490630710542e-23)
    sum a = (1.0854867240440225e-25,-1.330401474944451e-25,-3.3858230690165694e-26)
    sum e = 2.3992327161026993e-16
    sum de = 3.659266894335748e-33
Info: cfl dt = 39.6505596021498 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0516e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835868.3446201296 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3340.3358095246886, dt = 39.6505596021498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 311.26 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.750612869785249e-24,-5.263254399023973e-23,-2.0784364148460792e-23)
    sum a = (1.1771925277174226e-25,1.4774254141523563e-25,-6.081931128469195e-26)
    sum e = 2.399237483301279e-16
    sum de = -5.7777898331617076e-34
Info: cfl dt = 39.651281066539966 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0260e+04 | 1536 |      1 | 5.076e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2812123.184066926 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3379.9863691268383, dt = 21.064585743863063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 275.43 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1185788064964014e-24,-4.395370047524477e-23,-2.260000871242266e-23)
    sum a = (-1.389794996515193e-26,-1.2349283089646917e-25,7.46606837276817e-26)
    sum e = 2.3987777779903905e-16
    sum de = 2.1185229388259594e-33
Info: cfl dt = 39.65166790228963 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1280e+04 | 1536 |      1 | 4.910e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1544314.4355164976 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 94                                                      [SPH][rank=0]
Info: time since start : 20.011974661 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009709320000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009453730000000001 s
rho_t_ampl=0.00137086, rho_t_phi=3.14159 rad
eps_t_ampl=-2.8475e-07, eps_t_phi=6.28319 rad
vx_t_ampl=1.45978e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3778.95s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 3401.0509548707014, dt = 39.65166790228963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.2%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 399.31 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (78.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.851224345646346e-24,-5.170694827234683e-23,-1.8212673090128234e-23)
    sum a = (8.96650266339077e-26,1.1480342093140814e-26,1.0185728942965583e-25)
    sum e = 2.399242881853536e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.65239932347583 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9549e+04 | 1536 |      1 | 5.198e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2746095.2452563057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3440.702622772991, dt = 39.65239932347583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 305.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3755353898594981e-24,-4.857576339455678e-23,-1.363459178698318e-23)
    sum a = (7.072971562190703e-26,-2.946397708615319e-26,6.747213509539901e-27)
    sum e = 2.3992469556625674e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 39.653137971438056 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4691e+04 | 1536 |      1 | 6.221e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2294626.405689303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3480.355022096467, dt = 39.653137971438056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.4%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 331.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.985857878306933e-25,-5.0556427925556956e-23,-1.5252714953793712e-23)
    sum a = (5.189773509291863e-26,-4.3642926176708697e-26,6.791745240701234e-26)
    sum e = 2.399250213777876e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.65388310055168 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4571e+04 | 1536 |      1 | 6.251e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2283590.6282928116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3520.008160067905, dt = 39.65388310055168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 328.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6849392705911354e-24,-5.25679366057363e-23,-1.1346728274198423e-23)
    sum a = (6.755230326927936e-26,-1.2842385942722985e-25,6.747254117721717e-26)
    sum e = 2.3992529964807194e-16
    sum de = 1.0592614694129797e-33
Info: cfl dt = 39.65461015468429 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4839e+04 | 1536 |      1 | 6.184e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2308504.0389364166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3559.662043168457, dt = 39.65461015468429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 293.61 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.6608571813448574e-24,-5.934181808484795e-23,-8.67995218660209e-24)
    sum a = (2.6607599375662613e-26,-5.695430032194343e-26,6.457820907590855e-27)
    sum e = 2.3992553303431526e-16
    sum de = -6.2592723192585165e-34
Info: cfl dt = 39.65534048518305 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4760e+04 | 1536 |      1 | 6.203e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2301251.117616667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3599.316653323141, dt = 39.65534048518305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.5%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 331.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.968368698789408e-24,-6.018295404918868e-23,-9.633622572731593e-24)
    sum a = (-8.395601744747913e-27,-1.6378550077417357e-26,7.946111493910768e-26)
    sum e = 2.3992572135168143e-16
    sum de = 1.4444474582904269e-34
Info: cfl dt = 39.65595253900336 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4762e+04 | 1536 |      1 | 6.203e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2301401.3096208232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3638.971993808324, dt = 39.65595253900336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 294.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.933410580938392e-24,-6.00277129147731e-23,-5.035031129320355e-24)
    sum a = (8.873505228679717e-26,1.03341015355216e-25,-4.777425370826378e-26)
    sum e = 2.399258639800714e-16
    sum de = 6.2592723192585165e-34
Info: cfl dt = 39.65626313919455 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4994e+04 | 1536 |      1 | 6.146e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2323008.628930815 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3678.6279463473275, dt = 39.65626313919455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.5%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 297.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0365287411928033e-23,-5.355613768002426e-23,-9.452399375835044e-24)
    sum a = (1.3226301825572096e-26,-4.3450278902899303e-26,3.4587135199992726e-26)
    sum e = 2.399259601554002e-16
    sum de = 1.6851887013388314e-34
Info: cfl dt = 39.65627088647558 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4925e+04 | 1536 |      1 | 6.162e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2316672.536424756 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3718.284209486522, dt = 39.65627088647558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 315.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.380961230753034e-24,-5.819069067147037e-23,-6.447730117628735e-24)
    sum a = (7.902198688364266e-26,2.9234529679996586e-26,3.614612525407228e-26)
    sum e = 2.399260097686946e-16
    sum de = -1.0833355937178202e-34
Info: cfl dt = 39.656234844792976 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5193e+04 | 1536 |      1 | 6.097e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2341549.919174227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3757.9404803729976, dt = 21.005025038892654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 282.12 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2364938919181713e-23,-5.613529236863157e-23,-5.6575679856600916e-24)
    sum a = (1.1353436820974485e-25,1.039930809050892e-25,7.266326056183083e-27)
    sum e = 2.3987844049955317e-16
    sum de = -1.4444474582904269e-34
Info: cfl dt = 39.656217827035256 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4997e+04 | 1536 |      1 | 6.145e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230625.4816052655 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 104                                                     [SPH][rank=0]
Info: time since start : 20.944820531 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00123796 s
sph::RenderFieldGetter compute custom field took :  0.000904197 s
rho_t_ampl=0.00138561, rho_t_phi=3.14159 rad
eps_t_ampl=-3.30033e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.17093e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4156.84s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 3778.9455054118903, dt = 39.656217827035256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.06 us    (2.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.02 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.722064497689487e-23,-5.122578987820014e-23,-5.6727234294118735e-24)
    sum a = (-7.579290928950885e-26,-8.04803316656777e-26,-1.2590518710525475e-26)
    sum e = 2.399260139538667e-16
    sum de = -1.6851887013388314e-34
Info: cfl dt = 39.656158559919156 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4376e+04 | 1536 |      1 | 6.301e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2265629.842152652 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3818.6017232389254, dt = 39.656158559919156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 306.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0438858715832777e-23,-5.807476678584097e-23,-6.565738716459084e-24)
    sum a = (9.893893748426001e-27,-1.4655269569651125e-26,4.0451037062011664e-26)
    sum e = 2.399259263828115e-16
    sum de = -4.333342374871281e-34
Info: cfl dt = 39.65599034166561 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4861e+04 | 1536 |      1 | 6.178e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2310677.1637142473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3858.2578817988447, dt = 39.65599034166561 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 298.43 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2578213036119063e-23,-5.735030385313149e-23,-3.909900608424434e-24)
    sum a = (3.2445771665856547e-26,6.591261298501439e-26,4.3688566896243746e-26)
    sum e = 2.399258176525562e-16
    sum de = 1.0592614694129797e-33
Info: cfl dt = 39.65547967150483 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4519e+04 | 1536 |      1 | 6.265e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2278895.053707348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3897.91387214051, dt = 39.65547967150483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 304.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4284405971617865e-23,-5.313970291717438e-23,-2.113215806083299e-24)
    sum a = (9.857728079371703e-26,-1.3986484713719217e-26,1.0412047046905798e-25)
    sum e = 2.399256592511693e-16
    sum de = 9.62964972193618e-35
Info: cfl dt = 39.654744824918495 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0867e+04 | 1536 |      1 | 4.976e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2868897.2502848827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3937.569351812015, dt = 39.654744824918495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 317.09 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.958153985275949e-23,-5.52782693425277e-23,3.2138829432345807e-24)
    sum a = (1.5269662127139974e-25,-7.511321998990457e-26,-4.744660348288983e-26)
    sum e = 2.3992545492131173e-16
    sum de = -1.925929944387236e-34
Info: cfl dt = 39.65401609862731 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0881e+04 | 1536 |      1 | 4.974e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870145.4851263585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3977.2240966369336, dt = 39.65401609862731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 324.90 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.670390338583006e-23,-5.946879833215966e-23,-1.672742255801906e-24)
    sum a = (1.3350298405186835e-25,4.182945223403288e-26,8.086016127168435e-26)
    sum e = 2.399252056627942e-16
    sum de = -4.81482486096809e-34
Info: cfl dt = 39.653293693088756 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4194e+04 | 1536 |      1 | 6.349e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2248557.431325976 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4016.878112735561, dt = 39.653293693088756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.3%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 337.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1637313966768453e-23,-5.549150471053392e-23,4.077568724739928e-24)
    sum a = (-3.03016641433517e-26,-9.036131541051934e-26,1.0591127937562664e-25)
    sum e = 2.3992491176039504e-16
    sum de = -1.7333369499485123e-33
Info: cfl dt = 39.65255282385893 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4902e+04 | 1536 |      1 | 6.168e-02 | 0.1% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2314363.767873964 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4056.53140642865, dt = 39.65255282385893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 300.91 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.679648749860907e-23,-6.169526024962531e-23,8.773900996583138e-24)
    sum a = (-3.249743690736269e-26,4.2181377544248234e-26,-7.838357726494996e-28)
    sum e = 2.399245734668308e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.65181702357137 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4918e+04 | 1536 |      1 | 6.164e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2315727.628230996 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4096.183959252508, dt = 39.65181702357137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 298.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.587064637081902e-23,-5.739508470120693e-23,6.627453639218512e-24)
    sum a = (-1.1598846718128656e-25,-4.357860951009742e-27,-4.2887782058812016e-26)
    sum e = 2.399241912424383e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.651088164925476 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4120e+04 | 1536 |      1 | 6.368e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2241521.1999552865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4135.83577627608, dt = 21.00427967699943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 297.96 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.177049280489167e-23,-5.840931214090361e-23,4.891877683074591e-24)
    sum a = (1.400128044816421e-26,-2.053163894665926e-25,5.746388181675832e-26)
    sum e = 2.39877522857488e-16
    sum de = 5.7777898331617076e-34
Info: cfl dt = 39.65070571492004 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4639e+04 | 1536 |      1 | 6.234e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1212947.5407815094 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 114                                                     [SPH][rank=0]
Info: time since start : 21.867420063 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009145860000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009608630000000001 s
rho_t_ampl=0.00136574, rho_t_phi=3.14159 rad
eps_t_ampl=-3.74126e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.69088e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4534.73s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 4156.840055953079, dt = 39.65070571492004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.14 us    (2.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 339.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3608948758646192e-23,-6.86602385407578e-23,8.224268357271289e-24)
    sum a = (-4.3579631210429936e-26,6.22626453082202e-26,-3.823843806314239e-26)
    sum e = 2.399236615538886e-16
    sum de = -2.5037089277034066e-33
Info: cfl dt = 39.64998699716037 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3595e+04 | 1536 |      1 | 6.510e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2192753.800801036 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4196.490761667999, dt = 39.64998699716037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 304.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0712388658845903e-23,-6.088649255908818e-23,4.8107825243788825e-24)
    sum a = (1.9857535572885293e-25,1.1562822321219099e-26,6.295174435627422e-26)
    sum e = 2.399230878883116e-16
    sum de = -5.007417855406813e-33
Info: cfl dt = 39.64927662599517 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3955e+04 | 1536 |      1 | 6.412e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2226123.4217218366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4236.14074866516, dt = 39.64927662599517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 3.60 us    (1.1%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.20 us    (0.7%)
   LB compute        : 298.33 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3356733204092825e-23,-6.14333045588788e-23,9.312868359038353e-24)
    sum a = (-7.811784515728519e-26,1.1373820373287455e-25,-5.548153114250409e-26)
    sum e = 2.399225574801608e-16
    sum de = 2.1185229388259594e-33
Info: cfl dt = 39.64857385661314 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4043e+04 | 1536 |      1 | 6.389e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2234273.4288337915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4275.790025291155, dt = 39.64857385661314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 324.57 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4574468791912956e-23,-5.489856856638869e-23,4.7652079228748096e-24)
    sum a = (-2.999167269431485e-26,3.033198089334193e-26,-6.651746142323592e-26)
    sum e = 2.399219823809574e-16
    sum de = 4.237045877651919e-33
Info: cfl dt = 39.6478789190068 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4079e+04 | 1536 |      1 | 6.379e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2237608.8717439403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4315.438599147768, dt = 39.6478789190068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 292.15 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4336395359052656e-23,-5.534920571911563e-23,1.909152217957489e-24)
    sum a = (-6.703565085421795e-26,8.793621506940309e-26,4.0952753733507146e-26)
    sum e = 2.399213663407593e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.647192003482544 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3885e+04 | 1536 |      1 | 6.431e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2219541.4019242916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4355.086478066775, dt = 39.647192003482544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 321.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.105627250631078e-23,-5.072085255665025e-23,5.663296947265073e-24)
    sum a = (-1.7979504044137068e-26,-1.6885061170659692e-26,-1.4576655793987723e-26)
    sum e = 2.3992071004144747e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.646513298101304 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0501e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834212.411376429 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4394.733670070258, dt = 39.646513298101304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 320.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.132079854282222e-23,-5.346811302480817e-23,3.984590788799526e-24)
    sum a = (-4.9856958053426065e-27,6.432051375450985e-27,1.0864441514966301e-26)
    sum e = 2.3992001421573585e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.64584298855512 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0412e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825904.067843436 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4434.380183368359, dt = 39.64584298855512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.5%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 276.42 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1585324579333662e-23,-5.275130946415197e-23,4.919646132643447e-24)
    sum a = (4.890115108556246e-26,-4.991081805860947e-27,1.5438661175673755e-26)
    sum e = 2.399192796399625e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.64518125811484 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0304e+04 | 1536 |      1 | 5.069e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2815808.001631628 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4474.026026356914, dt = 39.64518125811484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.4%)
   patch tree reduce : 1.11 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 298.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4389300566354946e-23,-5.317501610974383e-23,5.62238905056507e-24)
    sum a = (1.1185524786079527e-26,1.0024053325355169e-26,4.2757993939739786e-26)
    sum e = 2.399185071324352e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.64452828757869 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0564e+04 | 1536 |      1 | 5.026e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839950.728590691 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4513.671207615029, dt = 21.063398879239685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 271.90 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4124774529843504e-23,-5.2666539719150765e-23,7.064557681840961e-24)
    sum a = (5.473932337575639e-26,-2.1231412225948155e-26,8.147056303490938e-26)
    sum e = 2.398751146799615e-16
    sum de = -2.6963019221421302e-33
Info: cfl dt = 39.644186465468096 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0908e+04 | 1536 |      1 | 4.970e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1525869.716978547 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 124                                                     [SPH][rank=0]
Info: time since start : 22.757859811000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009101080000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008074460000000001 s
rho_t_ampl=0.00131175, rho_t_phi=3.14159 rad
eps_t_ampl=-4.15927e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-3.22224e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4912.63s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 4534.7346064942685, dt = 39.644186465468096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.80 us    (2.4%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 341.79 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6240982821935039e-23,-5.383669285771298e-23,1.0702101016492683e-23)
    sum a = (-2.8725874277414395e-26,2.5398145840062927e-26,2.79411270501163e-26)
    sum e = 2.39917499662359e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.643545676922955 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6200e+04 | 1536 |      1 | 5.863e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2434377.912197004 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4574.3787929597365, dt = 39.643545676922955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 319.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3489912042216044e-23,-5.190627277407753e-23,1.0748720892170716e-23)
    sum a = (-1.5551237693348443e-25,9.711426898547173e-26,2.5160536192223064e-26)
    sum e = 2.399164996602687e-16
    sum de = 1.925929944387236e-33
Info: cfl dt = 39.64291570762132 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9444e+04 | 1536 |      1 | 5.217e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2735804.847520617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4614.02233863666, dt = 39.64291570762132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.8%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 282.66 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4972173666547612e-23,-4.6634622773308806e-23,1.1691041667260832e-23)
    sum a = (2.8157556620846847e-27,-8.019331270714209e-26,3.0034051254755744e-26)
    sum e = 2.399156032292185e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.64229508031539 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0310e+04 | 1536 |      1 | 5.068e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2816238.5490917657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4653.665254344281, dt = 39.64229508031539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.7%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 277.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.849036995214979e-23,-5.33286685379831e-23,1.2978260562974397e-23)
    sum a = (-1.4104610931176492e-26,-2.217979609942056e-26,2.4557843264697834e-26)
    sum e = 2.399146701975211e-16
    sum de = 3.4666738998970245e-33
Info: cfl dt = 39.64168400002654 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8142e+04 | 1536 |      1 | 5.458e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2614753.4891250883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4693.307549424596, dt = 39.64168400002654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 283.33 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7590981428010888e-23,-5.305720644279945e-23,1.3843230098858252e-23)
    sum a = (-9.248078229599239e-27,-8.710499247418502e-26,5.589572274857401e-26)
    sum e = 2.3991370449536155e-16
    sum de = -4.237045877651919e-33
Info: cfl dt = 39.641082632903306 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9939e+04 | 1536 |      1 | 5.130e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2781604.974260186 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4732.949233424622, dt = 39.641082632903306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 282.59 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7326455391499446e-23,-5.779811233388597e-23,1.6680140221028148e-23)
    sum a = (-9.434073099021347e-26,5.290917427456711e-26,6.769404269175774e-26)
    sum e = 2.399127071843316e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.64049114244578 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0339e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818748.7154555367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4772.590316057525, dt = 39.64049114244578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 278.70 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.166559821015459e-23,-5.2925046755026744e-23,1.959741440864646e-23)
    sum a = (8.84508934585134e-26,7.544459777121036e-26,-1.33655249002444e-25)
    sum e = 2.399116793709348e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.63990968933389 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0101e+04 | 1536 |      1 | 5.103e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2796585.7344109495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4812.230807199971, dt = 39.63990968933389 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 299.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.899296942152153e-23,-4.948832655527975e-23,1.0308540001713764e-23)
    sum a = (3.086998179991925e-26,8.916110132545755e-26,-5.848915686652986e-26)
    sum e = 2.399106221945689e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.639338431387884 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9969e+04 | 1536 |      1 | 5.125e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2784280.6039599217 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4851.870716889305, dt = 39.639338431387884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 272.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9151685043428397e-23,-4.5682303209246864e-23,9.479857070097782e-24)
    sum a = (7.553458308197814e-26,1.0158481339229081e-25,-1.6535204900105837e-25)
    sum e = 2.399095368269532e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.638777523527565 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0328e+04 | 1536 |      1 | 5.065e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2817621.6512713735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4891.510055320693, dt = 21.11910171476393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 275.69 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1373703750124507e-23,-4.3290202527512535e-23,3.869783154974057e-24)
    sum a = (-7.77561884667422e-27,-9.244360060271854e-26,3.7377926134231106e-26)
    sum e = 2.3987134514449767e-16
    sum de = 1.925929944387236e-33
Info: cfl dt = 39.638485109214535 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0311e+04 | 1536 |      1 | 5.067e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1500325.7567952042 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 134                                                     [SPH][rank=0]
Info: time since start : 23.599984712 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009491810000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009606720000000001 s
rho_t_ampl=0.001225, rho_t_phi=3.14159 rad
eps_t_ampl=-4.54392e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.67288e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5290.52s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 4912.629157035457, dt = 39.638485109214535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.16 us    (2.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 346.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.031559960407874e-23,-4.900311243967483e-23,7.492125006204886e-24)
    sum a = (9.516737485431172e-26,-1.8464717100200906e-26,-1.6834248388519729e-26)
    sum e = 2.3990815150988833e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.63793811676026 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2965e+04 | 1536 |      1 | 6.688e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2133508.2378354003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4952.267642144671, dt = 39.63793811676026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 304.66 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6188077614632752e-23,-4.8269478926598e-23,5.7504058740612614e-24)
    sum a = (1.4073611786272809e-25,7.664925183796409e-26,-3.251838362962508e-26)
    sum e = 2.3990682458121057e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63740413061834 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3580e+04 | 1536 |      1 | 6.514e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2190650.906973289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4991.905580261431, dt = 39.63740413061834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 316.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.248379728360507e-23,-4.3347111791031544e-23,4.150618169400655e-24)
    sum a = (7.331297769721408e-26,-1.2314267148806311e-26,3.5126569179750683e-26)
    sum e = 2.399056519687964e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.63688098443151 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3537e+04 | 1536 |      1 | 6.526e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2186607.89140071 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5031.542984392049, dt = 39.63688098443151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.3%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 330.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3859332673464567e-23,-4.559816636345411e-23,6.883560977322804e-24)
    sum a = (3.8103115610778986e-26,1.7458877403985926e-25,-1.0046146588929638e-26)
    sum e = 2.399044543017802e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.63636885328233 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3405e+04 | 1536 |      1 | 6.563e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2174344.4730773554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5071.179865376481, dt = 39.63636885328233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 351.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.50761524414172e-23,-3.497372610013127e-23,5.5901154262414554e-24)
    sum a = (7.395879321604084e-26,7.927849042823449e-26,-3.7730975106520123e-26)
    sum e = 2.399032354577546e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.63586294842013 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2714e+04 | 1536 |      1 | 6.762e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2110104.346514832 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5110.816234229763, dt = 39.63586294842013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 338.59 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8409180501461367e-23,-3.3719397366845186e-23,3.545952630620719e-24)
    sum a = (1.2270494857708488e-25,-4.3208990494432173e-26,5.528936872231861e-27)
    sum e = 2.399019967608173e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.6353581390256 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3277e+04 | 1536 |      1 | 6.599e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2162365.1427028608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5150.452097178183, dt = 39.6353581390256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 338.28 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.380551164629478e-23,-3.785868735321343e-23,4.622415994853473e-24)
    sum a = (5.773590738311257e-26,9.700978435949123e-26,-6.476340344688435e-26)
    sum e = 2.399007395696375e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.634864768048715 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3036e+04 | 1536 |      1 | 6.668e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2139944.1045473386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5190.087455317209, dt = 39.634864768048715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 309.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.55513834872703e-23,-3.123497089853938e-23,6.624962158377713e-25)
    sum a = (1.6610375144224333e-25,-9.487855215321376e-26,-4.692805637750688e-27)
    sum e = 2.398994652989657e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.634382968162136 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9041e+04 | 1536 |      1 | 5.289e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2697739.2288249475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5229.722320085258, dt = 39.634382968162136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.3%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 358.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.380459582642729e-23,-3.8798116439519597e-23,1.6669447703463943e-24)
    sum a = (2.7899230413316144e-26,5.493373655137508e-27,1.2952981788585843e-26)
    sum e = 2.398981753570687e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.633912868778616 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9188e+04 | 1536 |      1 | 5.262e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2711400.576618823 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5269.35670305342, dt = 21.16700452322675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 304.81 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1952913570847193e-23,-3.6694049479182005e-23,2.290810542766228e-24)
    sum a = (-1.3285716853304158e-25,1.2386741651097306e-26,-1.1444904686188414e-26)
    sum e = 2.3986658788031917e-16
    sum de = 0
Info: cfl dt = 39.63366945531145 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9761e+04 | 1536 |      1 | 5.161e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1476468.3147810488 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 144                                                     [SPH][rank=0]
Info: time since start : 24.541355223 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000943751 s
sph::RenderFieldGetter compute custom field took :  0.000826662 s
rho_t_ampl=0.00110765, rho_t_phi=3.14159 rad
eps_t_ampl=-4.88561e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.00653e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5668.42s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 5290.523707576646, dt = 39.63366945531145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.1%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.15 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.491652099964284e-23,-3.612875423924256e-23,1.5789918868078963e-24)
    sum a = (1.5021668967910496e-25,2.041348434863719e-26,4.456506680661896e-26)
    sum e = 2.398965501252992e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63321465272694 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2970e+04 | 1536 |      1 | 6.687e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2133710.9403264406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5330.157377031957, dt = 39.63321465272694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.41 us   (7.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 306.24 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.682019264265772e-23,-3.516111593107405e-23,4.455189093741971e-24)
    sum a = (8.612595759073705e-26,-8.805670633392638e-26,2.943790157396321e-26)
    sum e = 2.398950278203759e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.632774791695404 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3590e+04 | 1536 |      1 | 6.511e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2191312.687001514 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5369.790591684684, dt = 39.632774791695404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 304.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.856606448363324e-23,-4.0800764530780636e-23,5.322125723780261e-24)
    sum a = (1.2650234382778625e-25,-9.801153315496122e-26,-6.9618438888555e-26)
    sum e = 2.3989369610269873e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 39.63234703086886 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4130e+04 | 1536 |      1 | 6.366e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2241408.1012257203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5409.42336647638, dt = 39.63234703086886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 294.50 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.465016332339641e-23,-4.4881156141831884e-23,6.000447773870981e-25)
    sum a = (7.274466004064652e-26,3.714110591281024e-26,6.4238594285774815e-27)
    sum e = 2.3989235318731726e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.631931515772905 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9830e+04 | 1536 |      1 | 5.149e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2770886.6275432883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5449.055713507249, dt = 39.631931515772905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 298.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.655475078627879e-23,-4.073171393550768e-23,2.3615021122807106e-24)
    sum a = (-7.742036439695229e-26,1.5686834671152183e-25,-5.092649761330276e-26)
    sum e = 2.3989100267265873e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 39.63152835702325 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0135e+04 | 1536 |      1 | 5.097e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2799190.3535559056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5488.687645023021, dt = 39.63152835702325 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 321.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.110551443414309e-23,-3.2142419200353244e-23,-7.932455333439463e-25)
    sum a = (2.8415882828377553e-26,8.418195197039368e-26,-8.259821648123588e-26)
    sum e = 2.3988964603597953e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.631137661997634 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0465e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2829763.864714857 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5528.319173380044, dt = 39.631137661997634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.6%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 304.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.401530083576895e-23,-3.024715731356272e-23,-4.6943061335573944e-24)
    sum a = (1.0149636693881399e-25,1.150984337490269e-25,4.36737440103325e-26)
    sum e = 2.3988828477467244e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.630759534599704 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0503e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833307.127891752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5567.950311042042, dt = 39.630759534599704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 307.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.930582156599778e-23,-2.5073735853207548e-23,-4.61331762165265e-25)
    sum a = (7.677454887812553e-26,-1.2437344198121783e-26,-5.36083060869185e-27)
    sum e = 2.3988692039116196e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.63039407523798 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9985e+04 | 1536 |      1 | 5.122e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2785180.765726116 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5607.581070576642, dt = 39.63039407523798 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.8%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 270.28 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.163365068729848e-23,-2.809315589730944e-23,-1.6454223095605371e-24)
    sum a = (9.798313051639641e-26,-3.237582303383206e-26,-6.565796597227145e-27)
    sum e = 2.398855543909013e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.63004138080348 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0345e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818534.2102609943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5647.211464651879, dt = 21.206793465956252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.8%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 266.70 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.454343708892434e-23,-2.917484522610276e-23,-1.8085384404275706e-24)
    sum a = (-8.868338704529103e-26,8.576198946086155e-26,-1.1375668250575463e-25)
    sum e = 2.398613254467348e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.629861283688605 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0121e+04 | 1536 |      1 | 5.100e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1497096.431491315 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 154                                                     [SPH][rank=0]
Info: time since start : 25.575299552 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010818680000000002 s
sph::RenderFieldGetter compute custom field took :  0.0010125590000000001 s
rho_t_ampl=0.000962649, rho_t_phi=3.14159 rad
eps_t_ampl=-5.17579e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.18985e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6046.31s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 5668.418258117836, dt = 39.629861283688605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.63 us    (2.3%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 345.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.819481221264973e-23,-2.4523346035442628e-23,-7.453287477671442e-24)
    sum a = (-4.2133004448257985e-26,5.944711984404994e-26,-2.89609785511778e-26)
    sum e = 2.3988385152518965e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 39.629524930356844 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2462e+04 | 1536 |      1 | 6.838e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2086355.005384212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5708.048119401525, dt = 39.629524930356844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 303.45 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.782447576153371e-23,-2.2689591618665166e-23,-6.920776306586278e-24)
    sum a = (1.8289495493173915e-26,-4.322733695287228e-26,1.6017615534449347e-26)
    sum e = 2.3988228459462144e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.62920503420476 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3558e+04 | 1536 |      1 | 6.520e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2188113.545069327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5747.677644331881, dt = 39.62920503420476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.5%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 327.17 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.962325280981151e-23,-2.6437543233245153e-23,-5.394770778594974e-24)
    sum a = (1.8702817425223044e-26,-2.0185985741262983e-26,-1.115504130398652e-25)
    sum e = 2.398809265548267e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.62889818980044 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3855e+04 | 1536 |      1 | 6.439e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2215721.3281936506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5787.306849366086, dt = 39.62889818980044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 327.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.020521009013669e-23,-2.6778792153393216e-23,-1.2343100520062147e-23)
    sum a = (8.209606875325805e-26,1.497884238029947e-25,-5.966191749500186e-26)
    sum e = 2.3987957210888187e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.628604505277565 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3753e+04 | 1536 |      1 | 6.467e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2206160.734311291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5826.935747555886, dt = 39.628604505277565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 330.06 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.47021527108312e-23,-1.7475716274210688e-23,-1.3679277098916573e-23)
    sum a = (-4.4328777212268977e-26,9.586081611425587e-26,-1.0122443746830699e-25)
    sum e = 2.398782243772713e-16
    sum de = 0
Info: cfl dt = 39.62832405746093 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3909e+04 | 1536 |      1 | 6.424e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2220693.511866962 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5866.564352061164, dt = 39.62832405746093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.8%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 279.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.078716737046186e-23,-1.4745440754197914e-23,-1.8514164242573078e-23)
    sum a = (7.439794776884304e-26,-1.2208433499979359e-25,-1.5464636224819872e-26)
    sum e = 2.398768848327124e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.62805691977945 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0470e+04 | 1536 |      1 | 5.041e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830053.6085395766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5906.192676118625, dt = 39.62805691977945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.6%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 280.64 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.581316206417926e-23,-2.390088320577664e-23,-1.7427739129742893e-23)
    sum a = (-6.783646209756313e-26,4.6684042443619915e-27,6.98753253431559e-28)
    sum e = 2.3987555495248496e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62780316200699 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0376e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821294.5547461775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5945.820733038405, dt = 39.62780316200699 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 278.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.025811529743897e-23,-2.1205275062814488e-23,-1.707978721423285e-23)
    sum a = (-1.2278244643934409e-25,5.971447107118457e-26,-2.4491777945968194e-26)
    sum e = 2.3987423620307985e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62756285025077 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0284e+04 | 1536 |      1 | 5.072e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2812729.3525021756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5985.448536200412, dt = 39.62756285025077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 282.60 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.539083622562844e-23,-1.7747449611912238e-23,-1.8549459390056287e-23)
    sum a = (-1.639338112989854e-25,5.646180922770844e-27,-3.76409668264576e-27)
    sum e = 2.3987293003854937e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 39.627336046938645 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0761e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2857010.3477747603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6025.076099050662, dt = 21.236709608361707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 274.17 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.020612591000418e-23,-1.8699149193076106e-23,-1.8218702672242563e-23)
    sum a = (1.2812979893522968e-26,-1.3201443604210223e-26,-5.644474758169442e-26)
    sum e = 2.398560925969404e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62722390424936 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4238e+04 | 1536 |      1 | 6.337e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1206393.2811437452 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 164                                                     [SPH][rank=0]
Info: time since start : 26.491112376 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001141059 s
sph::RenderFieldGetter compute custom field took :  0.000994595 s
rho_t_ampl=0.000793616, rho_t_phi=3.14159 rad
eps_t_ampl=-5.40722e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.19328e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6424.21s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 6046.312808659024, dt = 39.62722390424936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.19 us    (2.2%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 393.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.375077479925751e-23,-1.9421920089126266e-23,-2.1014833165439583e-23)
    sum a = (7.491460018390445e-26,1.59173249053951e-26,-2.3313751825574204e-26)
    sum e = 2.398713198460133e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62701407586561 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9075e+04 | 1536 |      1 | 5.283e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2700403.6343121137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6085.940032563273, dt = 39.62701407586561 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.06 us    (0.4%)
   gen split merge   : 491.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 281.32 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.708380285930167e-23,-1.8214865051818292e-23,-2.1282242843695056e-23)
    sum a = (9.674316472024902e-26,-3.1640853124106713e-26,2.2062664801156068e-26)
    sum e = 2.3986986321688476e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.62682180660973 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8636e+04 | 1536 |      1 | 5.364e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2659601.8010007944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6125.567046639138, dt = 39.62682180660973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 302.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.115750382157788e-23,-2.04111803008651e-23,-1.9508903606854742e-23)
    sum a = (-6.225661601489991e-27,1.3075928822048908e-25,2.439546540862521e-28)
    sum e = 2.3986861410080116e-16
    sum de = 0
Info: cfl dt = 39.62664321413988 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7310e+04 | 1536 |      1 | 5.624e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536441.485594644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6165.193868445748, dt = 39.62664321413988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 330.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.888257990757948e-23,-1.2011858658728746e-23,-1.993153957233964e-23)
    sum a = (3.381490056576929e-26,3.736906806940939e-27,-8.083859328145481e-26)
    sum e = 2.3986738284678623e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62647836705347 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9602e+04 | 1536 |      1 | 5.189e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2749320.7314548003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6204.820511659888, dt = 39.62647836705347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 296.27 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.110459861427559e-23,-1.4379470015989162e-23,-2.474140293919748e-23)
    sum a = (-7.813076146766172e-26,-1.3956546844268956e-25,-8.066130274118115e-26)
    sum e = 2.3986617194564273e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.626327306955005 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9959e+04 | 1536 |      1 | 5.127e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782422.613091653 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6244.446990026941, dt = 39.626327306955005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.5%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 324.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.576117267674446e-23,-2.275003995122735e-23,-2.793420142274315e-23)
    sum a = (-1.3691288999127365e-27,4.6249699973248034e-26,-4.954049940695023e-26)
    sum e = 2.3986498272037146e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 39.62619007197507 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9992e+04 | 1536 |      1 | 5.121e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2785455.242270606 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6284.073317333897, dt = 39.62619007197507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 278.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.729542368851083e-23,-1.723562789693165e-23,-2.928070109901408e-23)
    sum a = (2.5109307371984526e-26,-4.4506441124566144e-26,-9.13234239562499e-26)
    sum e = 2.3986381648239386e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 39.62606669649652 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0213e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805958.710728728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6323.699507405871, dt = 39.62606669649652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (0.4%)
   patch tree reduce : 1.50 us    (0.1%)
   gen split merge   : 841.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.1%)
   LB compute        : 1.35 ms    (98.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.803609659074286e-23,-2.079724881801974e-23,-3.3727338242636343e-23)
    sum a = (2.5625959787045936e-26,-1.492387442940054e-25,1.0665121939743913e-27)
    sum e = 2.3986267451779583e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.625957211151174 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9908e+04 | 1536 |      1 | 5.136e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2777637.825392777 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6363.325574102368, dt = 39.625957211151174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.3%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 345.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.01523048828344e-23,-2.878616761425206e-23,-3.185455179008377e-23)
    sum a = (3.287200990828221e-26,2.512929517308845e-26,-1.7708142248564786e-26)
    sum e = 2.398615580860599e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 39.62586164281563 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0263e+04 | 1536 |      1 | 5.076e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2810606.501033786 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6402.951531313519, dt = 21.255827886694533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 299.04 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.994068405362525e-23,-2.4797610969977978e-23,-3.2602934840710504e-23)
    sum a = (-2.7175917032230165e-26,3.334255178904653e-26,2.0511210158615427e-26)
    sum e = 2.398514242382769e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.625820312997405 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0668e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1527830.9122575137 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 174                                                     [SPH][rank=0]
Info: time since start : 27.331698181 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000920819 s
sph::RenderFieldGetter compute custom field took :  0.0008325740000000001 s
rho_t_ampl=0.000604785, rho_t_phi=3.14159 rad
eps_t_ampl=-5.57412e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.99173e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6802.10s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 6424.207359200213, dt = 39.625820312997405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.69 us    (2.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 344.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.782447576153371e-23,-2.3389888134660156e-23,-3.138396932420854e-23)
    sum a = (4.068637768608604e-27,7.623025379295653e-26,2.0250613678764695e-27)
    sum e = 2.3986020186215925e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.625741930314 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9706e+04 | 1536 |      1 | 5.171e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2758880.003519663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6463.833179513211, dt = 39.625741930314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 307.84 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.01523048828344e-23,-1.951998071750492e-23,-3.166998917018281e-23)
    sum a = (-3.0714986075400823e-26,-4.134036680757295e-26,-3.367257823002639e-26)
    sum e = 2.3985899942276696e-16
    sum de = -1.617781153285278e-32
Info: cfl dt = 39.62568177430449 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3730e+04 | 1536 |      1 | 6.473e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2203909.8118766127 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6503.458921443525, dt = 39.62568177430449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 292.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.687218203009252e-23,-2.3486657132001157e-23,-3.371156076676059e-23)
    sum a = (-1.130047994843069e-25,-1.3761864368624348e-25,-3.271307060496054e-26)
    sum e = 2.39857983624543e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.62563558243738 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3872e+04 | 1536 |      1 | 6.434e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217044.991865398 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6543.084603217829, dt = 39.62563558243738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 296.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.094679881223623e-23,-3.084719742841504e-23,-3.4988826409429785e-23)
    sum a = (2.0782343395845217e-26,2.160232571070753e-26,-2.8681923449507293e-26)
    sum e = 2.398569980270049e-16
    sum de = -1.617781153285278e-32
Info: cfl dt = 39.6256033825692 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3810e+04 | 1536 |      1 | 6.451e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2211282.3551113154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6582.710238800266, dt = 39.6256033825692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 309.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.51792153964193e-23,-2.6836269734568793e-23,-3.604549654820823e-23)
    sum a = (8.557055624454603e-26,1.205972454357182e-25,-7.23576793643143e-26)
    sum e = 2.3985604440129987e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.625585180469294 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4033e+04 | 1536 |      1 | 6.391e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2232036.5480952915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6622.335842182835, dt = 39.625585180469294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 294.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.046973612664813e-23,-2.0095660670987098e-23,-3.9778051025977234e-23)
    sum a = (3.483528908551557e-26,1.3643321114534428e-26,2.0527694970913263e-26)
    sum e = 2.3985512379018927e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.625580978432744 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3800e+04 | 1536 |      1 | 6.454e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2210375.3634485896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6661.961427363304, dt = 39.625580978432744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 296.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (60.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.057554654125271e-23,-2.167535126265811e-23,-3.712431053023581e-23)
    sum a = (1.23479927199677e-25,1.750699964731737e-25,-3.61415986751458e-26)
    sum e = 2.3985423721015305e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.625590774996255 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4170e+04 | 1536 |      1 | 6.355e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2244746.257813563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6701.587008341737, dt = 39.625590774996255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 292.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 8.32 us    (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.702998183213189e-23,-1.1537959231013668e-23,-3.967921957147341e-23)
    sum a = (-3.776729154098907e-26,-3.816710826594223e-26,-1.0375253960501183e-25)
    sum e = 2.3985338564024875e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.62561456494367 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3858e+04 | 1536 |      1 | 6.438e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2215710.9596343637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6741.212599116733, dt = 39.62561456494367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.7%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 296.10 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.290337566255339e-23,-1.727574595696117e-23,-4.513003945459534e-23)
    sum a = (6.933475410124122e-26,7.033224896538848e-26,-7.02951692956894e-26)
    sum e = 2.398525700211351e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.62565233930979 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9315e+04 | 1536 |      1 | 5.240e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2722592.3783558235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6780.838213681677, dt = 21.26369605972559 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 297.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.639511934450443e-23,-1.3630194851046355e-23,-4.5961890138847987e-23)
    sum a = (8.93679514952474e-26,-5.697945811593367e-26,1.0246820038131919e-26)
    sum e = 2.3984779897271826e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.6256828275287 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0348e+04 | 1536 |      1 | 5.061e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1512438.508148188 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 184                                                     [SPH][rank=0]
Info: time since start : 28.258631240000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008531130000000001 s
sph::RenderFieldGetter compute custom field took :  0.000786718 s
rho_t_ampl=0.000400877, rho_t_phi=3.14159 rad
eps_t_ampl=-5.67233e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.56526e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7180.00s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 6802.101909741403, dt = 39.6256828275287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.18 us    (2.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 366.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.882875888040969e-23,-1.724040693177097e-23,-4.4699542707407594e-23)
    sum a = (-1.0245217390667761e-25,-5.279071537382256e-26,-4.300618326332007e-26)
    sum e = 2.39851603821501e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 39.62573757307003 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 1536 |      1 | 5.122e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2784881.7743688677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6841.727592568932, dt = 39.62573757307003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 277.03 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.057554654125271e-23,-1.9248789864839188e-23,-4.7458787748636634e-23)
    sum a = (2.809943322415244e-26,2.3008328847775544e-27,-6.741370235702454e-26)
    sum e = 2.3985077426668294e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 39.6258107675265 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0210e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805661.829598741 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6881.353330142002, dt = 39.6258107675265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.4%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 322.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.576025685687697e-23,-1.80655783364863e-23,-5.061369333458354e-23)
    sum a = (-3.463508627467927e-26,8.052150319335193e-26,3.7099640621302727e-26)
    sum e = 2.3985009305405806e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 39.62589787230334 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0432e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826349.8776609898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6920.979140909529, dt = 39.62589787230334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 300.51 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.374985897939001e-23,-1.332712654437133e-23,-4.707287378845444e-23)
    sum a = (4.2875692294908765e-26,7.46571001661488e-26,-1.2958442392630508e-25)
    sum e = 2.398494512356353e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.625998874216755 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0685e+04 | 1536 |      1 | 5.006e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849832.0253428533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6960.605038781832, dt = 39.625998874216755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 284.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.554863602766782e-23,-1.0484427458841194e-23,-5.551028888442615e-23)
    sum a = (-1.0920740423360554e-26,2.302612464442378e-26,6.089721721181585e-26)
    sum e = 2.398488498432177e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.626113743372656 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0449e+04 | 1536 |      1 | 5.044e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2827940.6887484635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7000.231037656049, dt = 39.626113743372656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 285.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.374985897939001e-23,-1.0593673612005929e-23,-4.9323156179885626e-23)
    sum a = (7.289319760997669e-26,1.8132201790382523e-25,-6.929209496163935e-26)
    sum e = 2.398482895365716e-16
    sum de = 2.1570415377137042e-32
Info: cfl dt = 39.62624244647761 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0466e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2829479.6132479147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7039.857151399422, dt = 39.62624244647761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.6%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 277.53 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.956943178264173e-23,-2.7317996446372055e-25,-5.46483897806367e-23)
    sum a = (6.235348834272393e-26,-2.0639768898517512e-26,-1.7431078072104863e-26)
    sum e = 2.3984777093697447e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 39.62638494655231 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0292e+04 | 1536 |      1 | 5.071e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813337.725552145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7079.4833938459, dt = 39.62638494655231 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 276.30 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.126239841631496e-23,-5.093521164365923e-24,-5.431159177596503e-23)
    sum a = (-4.076387554834525e-26,3.468431394100937e-26,3.4058154267759e-27)
    sum e = 2.3984729461994445e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 39.626541202944175 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0455e+04 | 1536 |      1 | 5.044e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2828446.8601805577 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7119.109778792452, dt = 39.626541202944175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.9%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 270.72 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.777065473436392e-23,-2.6221660021611742e-24,-5.376378570918789e-23)
    sum a = (-9.652358744384793e-26,-2.2860815885814923e-26,-4.766741021021133e-26)
    sum e = 2.398468611146574e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 39.62671117134086 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0339e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2817697.5242339526 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7158.736319995396, dt = 21.2601402871951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 283.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.42789110524129e-23,-4.2480194871179255e-24,-5.578912917742165e-23)
    sum a = (9.50317535953581e-26,1.281695204919652e-25,-4.3806058160698356e-26)
    sum e = 2.3984558879748464e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.626812611195504 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0620e+04 | 1536 |      1 | 5.016e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1525767.6025813553 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 194                                                     [SPH][rank=0]
Info: time since start : 29.086117504 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00093241 s
sph::RenderFieldGetter compute custom field took :  0.000811333 s
rho_t_ampl=0.000186995, rho_t_phi=3.14159 rad
eps_t_ampl=-5.6994e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.89954e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7557.89s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 7179.996460282591, dt = 39.626812611195504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.02 us   (2.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 366.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.009848385566461e-23,2.4352928236334624e-24,-5.748397719225548e-23)
    sum a = (1.267186920265932e-25,-4.158068357587046e-26,-3.89509486099332e-26)
    sum e = 2.398463820628096e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.62699891915522 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1797e+04 | 1536 |      1 | 7.047e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2024403.6034283186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7219.623272893787, dt = 39.62699891915522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 311.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.644710873193922e-23,-2.5750214692868207e-24,-5.893129013253323e-23)
    sum a = (1.174060322451113e-25,-2.00721101046451e-26,-8.549938737755342e-26)
    sum e = 2.398460072200199e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.627203451700154 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2053e+04 | 1536 |      1 | 6.965e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2048206.4188851786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7259.250271812942, dt = 39.627203451700154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 311.47 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.078533573072686e-23,-2.943420473846359e-24,-6.324167921750668e-23)
    sum a = (-3.199047172508368e-26,-1.3964361472201935e-25,-1.2292121272374767e-27)
    sum e = 2.3984572874148013e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.62742150358938 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2845e+04 | 1536 |      1 | 6.724e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2121779.542722374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7298.877475264642, dt = 39.62742150358938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 302.55 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.634129831733465e-23,-1.0846626634419995e-23,-6.16206940348118e-23)
    sum a = (8.996210177256801e-27,-7.940093009736567e-26,-3.335572504627511e-26)
    sum e = 2.398454947993929e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 39.62765302120718 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3263e+04 | 1536 |      1 | 6.603e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2160548.6778738014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7338.504896768231, dt = 39.62765302120718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.4%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 328.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.761102329258956e-23,-1.2798849449971039e-23,-6.35790485676563e-23)
    sum a = (1.0613170782519308e-25,-9.340414830742597e-26,-6.214096699360902e-26)
    sum e = 2.398453057386972e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62789793995521 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3017e+04 | 1536 |      1 | 6.673e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2137799.438241391 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7378.132549789439, dt = 39.62789793995521 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 327.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.311316485202756e-23,-1.677684055235712e-23,-6.661191025558091e-23)
    sum a = (6.754100149769989e-26,1.24113069219626e-25,-5.8632775135595374e-27)
    sum e = 2.3984516177092635e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.628156191986385 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2908e+04 | 1536 |      1 | 6.705e-02 | 0.1% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2127647.4627976203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7417.7604477293935, dt = 39.628156191986385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 315.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.533518355872367e-23,-7.550668385156482e-24,-6.572917786517995e-23)
    sum a = (-3.9336623251738107e-26,1.1895143046790126e-25,1.9376350762420893e-26)
    sum e = 2.3984506306077883e-16
    sum de = 1.771855548836257e-32
Info: cfl dt = 39.628427705921816 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2290e+04 | 1536 |      1 | 6.891e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2070232.395677899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7457.38860392138, dt = 39.628427705921816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 337.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.06795253161223e-23,-2.9382022844542387e-24,-6.446122358401126e-23)
    sum a = (-5.520501691003537e-26,9.792980185845384e-26,2.0393823293385415e-26)
    sum e = 2.398450097233063e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 39.62861200268427 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2672e+04 | 1536 |      1 | 6.775e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2105730.2457272583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7497.0170316273025, dt = 39.62861200268427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.19 us   (7.9%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 304.20 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.856331702403076e-23,5.253838408759478e-25,-6.363288425514785e-23)
    sum a = (-1.8944190975384545e-26,-2.13627890137673e-26,-4.993114022934573e-26)
    sum e = 2.398450018237848e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.628326395200226 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2773e+04 | 1536 |      1 | 6.745e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2115172.486411695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7536.645643629987, dt = 21.245367193793754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 330.62 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.951561075547195e-23,-2.29233510038597e-24,-6.608713001049684e-23)
    sum a = (-5.0190360315020384e-26,-5.705212497538603e-26,1.4658613115956533e-26)
    sum e = 2.398450201953534e-16
    sum de = -1.617781153285278e-32
Info: cfl dt = 39.628182478869114 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2849e+04 | 1536 |      1 | 6.722e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1137721.5639591163 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 204                                                     [SPH][rank=0]
Info: time since start : 30.084796401000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001038978 s
sph::RenderFieldGetter compute custom field took :  0.0009499420000000001 s
rho_t_ampl=-3.15139e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-5.65466e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.98624e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7935.79s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 7557.891010823781, dt = 39.628182478869114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.90 us    (2.5%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 327.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.739940246338042e-23,-4.931912288934714e-24,-6.482011930166224e-23)
    sum a = (8.369284762355722e-26,-4.9052408459018533e-26,-1.1753202483476875e-25)
    sum e = 2.398450583438152e-16
    sum de = -4.3140830754274083e-32
Info: cfl dt = 39.627910756577585 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0222e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807018.5948606823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7597.51919330265, dt = 39.627910756577585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 280.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.417126899807332e-23,-6.716713889385108e-24,-7.209690525421015e-23)
    sum a = (-2.2172461300119825e-26,7.893632645560961e-26,5.734040440409362e-28)
    sum e = 2.3984517509994653e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.62765729693537 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9695e+04 | 1536 |      1 | 5.173e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2757973.3886364354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7637.147104059228, dt = 39.62765729693537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.3%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 329.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.983304199928568e-23,-1.052007647548043e-24,-6.973404689751956e-23)
    sum a = (-1.3132658575342216e-26,-1.8323318188934814e-25,4.88417030537126e-27)
    sum e = 2.398453276230127e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62741742061976 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0588e+04 | 1536 |      1 | 5.022e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840926.364441724 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7676.774761356163, dt = 39.62741742061976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.8%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 268.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.015047324309941e-23,-1.350666325860517e-23,-6.945508705803048e-23)
    sum a = (-1.0219707677674104e-25,1.0073395932972678e-25,-5.18483494094474e-26)
    sum e = 2.398455252436658e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.627191195697065 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0412e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824582.835936083 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7716.402178776783, dt = 39.627191195697065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 281.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.359022753761565e-23,-3.8893593805822944e-24,-7.263377313329238e-23)
    sum a = (-7.523104978812957e-26,9.426152871736868e-26,-3.754200288915894e-26)
    sum e = 2.398457677342435e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 39.62697868443694 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0430e+04 | 1536 |      1 | 5.048e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826196.97740454 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7756.029369972481, dt = 39.62697868443694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 269.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.168564007473326e-23,-2.8307385821214654e-25,-7.383798911711781e-23)
    sum a = (-1.0449295094617018e-26,-1.3386983123237223e-26,-3.315352295938486e-26)
    sum e = 2.398460548312992e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 39.62677994559699 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9751e+04 | 1536 |      1 | 5.163e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2763187.6645524995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7795.6563486569175, dt = 39.62677994559699 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.6%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.4%)
   LB compute        : 268.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.157982966012869e-23,-2.9460554011631722e-24,-7.506480537553265e-23)
    sum a = (-9.848686662108129e-27,1.17865087880625e-25,-9.97147632630044e-26)
    sum e = 2.398463862209905e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 39.626595034083444 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0452e+04 | 1536 |      1 | 5.044e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2828283.4396018134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7835.283128602515, dt = 39.626595034083444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 269.21 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.2003071318547e-23,4.324019057373459e-24,-8.033496572948633e-23)
    sum a = (-4.9637380777024967e-26,-3.0518633561188005e-26,-3.877281627738714e-27)
    sum e = 2.3984676154091557e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 39.62642400093551 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0249e+04 | 1536 |      1 | 5.078e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2809359.5174669824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7874.909723636598, dt = 39.62642400093551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.8%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 274.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.967524219724631e-23,1.7328522001159693e-25,-7.85897519983112e-23)
    sum a = (4.401232760804386e-26,4.222448289207344e-26,-5.474584548873368e-26)
    sum e = 2.398471803805046e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.62626689331047 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0044e+04 | 1536 |      1 | 5.113e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790291.9949500724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7914.536147637534, dt = 21.24941372743524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.9%)
   patch tree reduce : 1.29 us    (0.5%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 266.44 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.136820883091954e-23,2.5124548618228837e-24,-8.076093875889821e-23)
    sum a = (-7.278340897177613e-27,1.6170112172697195e-26,-1.6054964434834463e-26)
    sum e = 2.3984615215704005e-16
    sum de = -2.3881531310401725e-32
Info: cfl dt = 39.62619307850761 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0118e+04 | 1536 |      1 | 5.100e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1499966.1158848314 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 214                                                     [SPH][rank=0]
Info: time since start : 30.907794003000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001006347 s
sph::RenderFieldGetter compute custom field took :  0.000813688 s
rho_t_ampl=-0.000249184, rho_t_phi=3.14159 rad
eps_t_ampl=-5.53925e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.82321e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8313.68s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 7935.785561364969, dt = 39.62619307850761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.16 us    (2.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 343.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.136820883091954e-23,2.8755065138865367e-24,-8.098605660996595e-23)
    sum a = (-1.848969830401021e-26,-4.277486403169233e-26,-5.357058815002688e-26)
    sum e = 2.3984776755873134e-16
    sum de = -1.617781153285278e-32
Info: cfl dt = 39.62605278684961 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9950e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2781548.425936233 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7975.411754443477, dt = 39.62605278684961 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 307.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.041591509947835e-23,1.503458527828703e-26,-8.385214823822157e-23)
    sum a = (2.871295796703786e-26,-5.487262058179314e-26,2.0834885067747073e-27)
    sum e = 2.39848363791873e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.625931178148655 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9934e+04 | 1536 |      1 | 5.131e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2780077.7425241782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8015.0378072303265, dt = 39.625931178148655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.5%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 289.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.232050256236073e-23,-2.4006254465828416e-24,-8.266691237633606e-23)
    sum a = (2.482514854370075e-26,1.1447342749098499e-25,2.182952503710878e-26)
    sum e = 2.3984893259559425e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 39.62582363519256 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9958e+04 | 1536 |      1 | 5.127e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782255.0914624655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8054.663738408475, dt = 39.62582363519256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 306.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.38018483668248e-23,5.491911841619776e-24,-8.141067192487844e-23)
    sum a = (-8.837985375144245e-26,1.6191600990339014e-25,7.122689416098901e-27)
    sum e = 2.39849542409946e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.6257301828957 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0027e+04 | 1536 |      1 | 5.115e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2788679.6754261944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8094.2895620436675, dt = 39.6257301828957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 301.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.724160266134104e-23,1.2847647270573589e-23,-8.141981539317763e-23)
    sum a = (1.7063737638440718e-25,-4.050933026272408e-26,1.970173766505202e-26)
    sum e = 2.3985019261755147e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.62565084639329 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0074e+04 | 1536 |      1 | 5.107e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2793030.1321854154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8133.915292226563, dt = 39.62565084639329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 286.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.83516961948216e-23,7.232694656306938e-24,-8.038989422945749e-23)
    sum a = (4.64599684243973e-26,6.125513210470131e-26,9.514290197055326e-26)
    sum e = 2.3985088251193466e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.625585647182504 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9884e+04 | 1536 |      1 | 5.140e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2775421.107971463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8173.540943072956, dt = 39.625585647182504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 288.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.919817951165821e-23,1.1676602906595397e-23,-7.512509840059633e-23)
    sum a = (-5.980251704335821e-26,-1.6027069396050415e-26,-4.2306422233788915e-26)
    sum e = 2.39851611337784e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.62553460280349 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0757e+04 | 1536 |      1 | 4.994e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856464.8970954358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8213.166528720138, dt = 39.62553460280349 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.4%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 319.43 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.327279629380192e-23,9.509581849482571e-24,-7.952476798294362e-23)
    sum a = (3.933016509654984e-26,-1.053297392854836e-25,-6.583114079961832e-26)
    sum e = 2.398523782971241e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 39.6254977268338 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0607e+04 | 1536 |      1 | 5.018e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2842577.0687189274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8252.79206332294, dt = 39.6254977268338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.8%)
   patch tree reduce : 1.17 us    (0.4%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 283.42 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.750521287798498e-23,3.566322458065148e-24,-8.259944947783016e-23)
    sum a = (-2.791214672369268e-26,-1.1121329840557241e-25,6.689070396479025e-26)
    sum e = 2.3985318255018246e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.62547502888459 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0781e+04 | 1536 |      1 | 4.990e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2858722.1777903195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8292.417561049775, dt = 21.262550856383314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 302.85 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.549481500049803e-23,1.0862100374251085e-24,-7.854759790395311e-23)
    sum a = (5.045110833074669e-26,9.825979056878287e-27,4.781325551915068e-26)
    sum e = 2.398488777449276e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.62547318724284 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0623e+04 | 1536 |      1 | 5.016e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1526047.8993277694 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 224                                                     [SPH][rank=0]
Info: time since start : 31.732634515 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001068924 s
sph::RenderFieldGetter compute custom field took :  0.0009119210000000001 s
rho_t_ampl=-0.000460572, rho_t_phi=3.14159 rad
eps_t_ampl=-5.35608e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.41455e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8691.57s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 8313.680111906158, dt = 39.62547318724284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.09 us    (2.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 344.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.909236909705365e-23,2.761687986848508e-24,-7.68557926382753e-23)
    sum a = (3.205828235456049e-26,-4.6177471435851905e-26,-2.695493917783803e-26)
    sum e = 2.3985424328481786e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.625467832323366 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0025e+04 | 1536 |      1 | 5.116e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2788508.64859507 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8353.305585093402, dt = 39.625467832323366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 311.83 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.888074826784449e-23,-1.774959371943474e-25,-7.940525726070156e-23)
    sum a = (4.338588655478191e-26,1.3386164186273162e-25,-4.9837224686700937e-26)
    sum e = 2.398552592032457e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 39.62548110375374 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0418e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824947.099383201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8392.931052925725, dt = 39.62548110375374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 320.64 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.099695655993602e-23,8.694356003757173e-24,-8.183344189997138e-23)
    sum a = (1.2843979038426653e-25,1.1038002925629324e-25,-3.8848256774971764e-27)
    sum e = 2.3985618829570345e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62550856614767 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0014e+04 | 1536 |      1 | 5.118e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2787431.600522492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8432.55653402948, dt = 39.62550856614767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 288.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.893273765527928e-23,1.2602909021559e-23,-8.107693713382626e-23)
    sum a = (5.935044618017947e-26,2.169687177823741e-25,-7.388937297238162e-26)
    sum e = 2.3985715010336985e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.6255502005932 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0898e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2869601.621691979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8472.182042595627, dt = 39.6255502005932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 275.67 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.946178972830216e-23,2.3312648598608472e-23,-8.539182708608182e-23)
    sum a = (5.134233374672762e-26,1.8620667042375565e-25,1.7340780928963113e-26)
    sum e = 2.398581438344557e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 39.62560599442455 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0789e+04 | 1536 |      1 | 4.989e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859418.347704402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8511.80759279622, dt = 39.62560599442455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 294.45 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0094313553276624e-22,3.008265518460717e-23,-8.28971656117451e-23)
    sum a = (-2.0653180292079864e-26,-1.8846959160406496e-26,-5.290387942574926e-26)
    sum e = 2.398591684092429e-16
    sum de = -3.158525108795067e-32
Info: cfl dt = 39.62567593130739 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0682e+04 | 1536 |      1 | 5.006e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849545.8710327917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8551.433198790644, dt = 39.62567593130739 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.7%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 285.98 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.935597931369759e-23,2.52739644966646e-23,-8.638526121059182e-23)
    sum a = (3.178703983665325e-26,-1.1380972275615086e-26,-3.0434692813167817e-26)
    sum e = 2.398602227056529e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.62575999094879 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0643e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2845901.243000361 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8591.058874721952, dt = 39.62575999094879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 331.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0083732511816166e-22,2.4970172876608488e-23,-8.714608068982977e-23)
    sum a = (6.024167159616041e-26,2.9536290765243696e-26,1.844393903346412e-26)
    sum e = 2.3986130556893514e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.6258581491021 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0753e+04 | 1536 |      1 | 4.995e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856138.26334018 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8630.684634712901, dt = 39.6258581491021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 337.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0369420631248524e-22,2.695184487981803e-23,-8.544679731085751e-23)
    sum a = (5.568221403324347e-26,1.9496092051917855e-27,-1.006180219769996e-26)
    sum e = 2.3986241581313236e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.62597037757474 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0760e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856790.584077312 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8670.310492862003, dt = 21.26416958534537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 280.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0464650004392643e-22,2.644560301092011e-23,-8.622553540835475e-23)
    sum a = (5.45972439616145e-26,5.50573276042529e-26,-6.530546415514085e-26)
    sum e = 2.398529283879802e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.62604057806854 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1012e+04 | 1536 |      1 | 4.953e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1545583.907274656 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 234                                                     [SPH][rank=0]
Info: time since start : 32.564875499 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001038607 s
sph::RenderFieldGetter compute custom field took :  0.000987983 s
rho_t_ampl=-0.000660393, rho_t_phi=3.14159 rad
eps_t_ampl=-5.10972e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.77049e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9069.47s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 8691.574662447349, dt = 39.62604057806854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.06 us    (2.1%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 402.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0829695934778433e-22,2.919292806062991e-23,-8.94006876791236e-23)
    sum a = (-3.035332938485784e-26,-1.9926946866216385e-26,3.879622172970566e-26)
    sum e = 2.398638456163398e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.626170230609624 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0284e+04 | 1536 |      1 | 5.072e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2812538.701331035 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8731.200703025417, dt = 39.626170230609624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.5%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 283.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0549298336076304e-22,2.6917203335388164e-23,-8.580077317799809e-23)
    sum a = (-1.2288577692235636e-25,4.0226968870210477e-26,9.119219743872232e-26)
    sum e = 2.3986518000242636e-16
    sum de = 0
Info: cfl dt = 39.62631798073307 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0370e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820563.999854767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8770.826873256026, dt = 39.62631798073307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.9%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 271.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.898564286258157e-23,2.970451728202372e-23,-8.114903623850737e-23)
    sum a = (-6.440072353740476e-26,4.628068524320893e-26,4.786133872961005e-26)
    sum e = 2.3986637775899684e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.62647968648596 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0148e+04 | 1536 |      1 | 5.095e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2799924.8261506488 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8810.45319123676, dt = 39.62647968648596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 293.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.644619291207172e-23,3.165728258261058e-23,-8.011098106436549e-23)
    sum a = (-1.8599486942210762e-27,-5.840295156440389e-26,-4.193543255287373e-26)
    sum e = 2.398675965465123e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.626655285614234 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0332e+04 | 1536 |      1 | 5.064e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2817076.022417232 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8850.079670923245, dt = 39.626655285614234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 288.48 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.861530641146555e-23,2.727051608942791e-23,-8.35519069609601e-23)
    sum a = (1.1728009821894008e-26,6.153672406856943e-26,-4.928888047679059e-26)
    sum e = 2.3986883563085005e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 39.626844727984846 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0494e+04 | 1536 |      1 | 5.037e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832148.8178572822 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8889.70632620886, dt = 39.626844727984846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 297.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.872111682607013e-23,3.208509661490218e-23,-8.565076604744963e-23)
    sum a = (-4.435460983302205e-26,-1.885751673050919e-26,3.826073183314517e-26)
    sum e = 2.3987009366559265e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.62704795986333 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0058e+04 | 1536 |      1 | 5.110e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791682.145526647 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8929.333170936845, dt = 39.62704795986333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 291.99 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.507065752221223e-23,2.974636612764369e-23,-8.239994874562011e-23)
    sum a = (-8.896754587357481e-26,-2.532809629936362e-26,2.947810677545354e-26)
    sum e = 2.398713692725258e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 39.6272649236608 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9708e+04 | 1536 |      1 | 5.170e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2759170.8659826335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8968.960218896707, dt = 39.6272649236608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 328.79 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.06795253161223e-23,2.861502650176297e-23,-8.140582675116803e-23)
    sum a = (-2.3326856540022663e-26,2.4077976567812808e-27,2.776401193283583e-26)
    sum e = 2.398726610539837e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62749555794963 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9625e+04 | 1536 |      1 | 5.185e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2751443.421833499 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9008.587483820369, dt = 39.62749555794963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.4%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 294.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.189634508407493e-23,2.925973121789735e-23,-8.033957093684207e-23)
    sum a = (3.665648884860704e-26,-1.0966628012554222e-25,-2.142083383144499e-27)
    sum e = 2.3987396759463744e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.62773979748172 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2883e+04 | 1536 |      1 | 6.712e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2125326.3490248816 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9048.21497937832, dt = 21.254233610217852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 277.75 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.353640651044586e-23,2.4707778031309174e-23,-8.097765110712755e-23)
    sum a = (5.783923786612485e-26,3.65905544898026e-26,-2.215816655398296e-26)
    sum e = 2.398578986821796e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 39.627880152523595 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2972e+04 | 1536 |      1 | 6.686e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1144343.1273050725 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 244                                                     [SPH][rank=0]
Info: time since start : 33.567128343 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001081027 s
sph::RenderFieldGetter compute custom field took :  0.0008545940000000001 s
rho_t_ampl=-0.00084365, rho_t_phi=3.14159 rad
eps_t_ampl=-4.80634e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.90715e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9447.36s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 9069.469212988537, dt = 39.627880152523595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.73 us    (2.3%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 356.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.66049085339786e-23,2.771031645774894e-23,-8.206844552956557e-23)
    sum a = (-2.774423468879772e-26,-4.0864900898817186e-26,-1.1428412963537776e-25)
    sum e = 2.398756250962315e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 39.62814144967366 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2961e+04 | 1536 |      1 | 6.690e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2132543.412589294 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9109.097093141061, dt = 39.62814144967366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 309.91 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.316607005932985e-23,2.455599846807451e-23,-8.842269149617205e-23)
    sum a = (-9.855144817296396e-26,1.102362217810951e-25,-5.943498216745131e-26)
    sum e = 2.3987714527639757e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 39.6284198569346 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2972e+04 | 1536 |      1 | 6.686e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2133641.664390118 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9148.725234590735, dt = 39.6284198569346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.5%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 281.30 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.776973891449643e-23,3.191819205221659e-23,-8.969122103656524e-23)
    sum a = (-9.064666622252439e-26,-9.020814865573197e-26,-7.61013798828878e-26)
    sum e = 2.3987849349193943e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.628711630211654 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8804e+04 | 1536 |      1 | 5.333e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2675307.1126285587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9188.353654447668, dt = 39.628711630211654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 315.79 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.443671085445226e-23,2.4372276869278674e-23,-9.30372521776931e-23)
    sum a = (3.384073318652236e-27,-7.487981822505357e-26,-1.4512994213577186e-26)
    sum e = 2.3987984881741176e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.62901666555405 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0814e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861984.5561347697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9227.98236607788, dt = 39.62901666555405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 370.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.671163476845066e-23,2.170987656029459e-23,-9.239205367951524e-23)
    sum a = (-1.9069640639916645e-25,7.490728430498024e-27,3.1788187503133015e-26)
    sum e = 2.398812108031217e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.629334876703496 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0581e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840380.6356602316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9267.611382743435, dt = 39.629334876703496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.4%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 315.36 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.496667874734264e-23,2.363714506419817e-23,-9.021487380089144e-23)
    sum a = (-2.014944418739499e-27,7.60149462148586e-26,-7.037624995913696e-26)
    sum e = 2.3988257796853614e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 39.62966617396509 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0273e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811763.9129570075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9307.240717620138, dt = 39.62966617396509 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 281.80 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (61.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.893456929501427e-23,2.800767575523753e-23,-9.502821544568848e-23)
    sum a = (-1.53523265135498e-25,2.698511764852835e-26,9.773519918702407e-27)
    sum e = 2.3988394881502067e-16
    sum de = 1.3096323621833204e-32
Info: cfl dt = 39.63001046399817 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0813e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861949.3445117157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9346.870383794103, dt = 39.63001046399817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.8%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 272.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.96761580171138e-23,2.8105658885753926e-23,-9.305273643695175e-23)
    sum a = (2.1286079500530092e-26,6.268791230465075e-26,-1.0941801753270943e-25)
    sum e = 2.3988532183994834e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 39.630367649842505 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0605e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2842695.5849661035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9386.5003942581, dt = 39.630367649842505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.7%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 289.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.311499649176255e-23,3.1298622476074945e-23,-9.975079363750174e-23)
    sum a = (-2.7615071585032365e-26,-2.7378119096186267e-26,-9.750721334935355e-26)
    sum e = 2.398866955382198e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.63073763094714 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0516e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834427.889651704 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9426.130761907943, dt = 21.233001621782023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 304.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.263884962604195e-23,2.8931153198228674e-23,-1.0158514968228605e-22)
    sum a = (-3.4434883463842976e-26,-1.7601380319222436e-26,-7.789219562807198e-26)
    sum e = 2.3986328853162276e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 39.63094435517829 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0499e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1517785.3775141125 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 254                                                     [SPH][rank=0]
Info: time since start : 34.423881402 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001066349 s
sph::RenderFieldGetter compute custom field took :  0.0009668840000000001 s
rho_t_ampl=-0.00100576, rho_t_phi=3.14159 rad
eps_t_ampl=-4.45355e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.84615e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9825.26s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 9447.363763529725, dt = 39.63094435517829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.63 us    (2.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 346.24 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.110459861427559e-23,2.833711916770144e-23,-1.0446384810138351e-22)
    sum a = (-1.1108026923820316e-27,-5.734128508986541e-26,-8.60769405153757e-26)
    sum e = 2.398884167019505e-16
    sum de = 0
Info: cfl dt = 39.63133059143137 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0286e+04 | 1536 |      1 | 5.072e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813116.4289818276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9486.994707884904, dt = 39.63133059143137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 322.18 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.226851317492594e-23,2.5277555230949276e-23,-1.080373763718451e-22)
    sum a = (-5.256938323249846e-26,-1.2518377017395666e-26,-8.329855537564453e-27)
    sum e = 2.3988997160632723e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.63173251730118 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0468e+04 | 1536 |      1 | 5.041e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830062.618183657 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9526.626038476335, dt = 39.63173251730118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.3%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 360.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.83535278345566e-23,2.5669991489119546e-23,-1.068268927647722e-22)
    sum a = (-3.035332938485784e-26,6.873857303683992e-26,8.779087481713279e-26)
    sum e = 2.398913371647067e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.632146881176475 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0622e+04 | 1536 |      1 | 5.016e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2844381.8659600527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9566.257770993636, dt = 39.632146881176475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 275.60 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (61.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.803609659074286e-23,3.000457608838101e-23,-1.0144283638180218e-22)
    sum a = (-1.2634734810326782e-25,-3.559680901360401e-26,5.861048383613432e-26)
    sum e = 2.3989269504764473e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 39.632573540184396 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0502e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833297.18670735 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9605.889917874812, dt = 39.632573540184396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 269.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.089389360493393e-23,2.652662702591212e-23,-9.969819284165022e-23)
    sum a = (-5.913086890377837e-26,9.003290182153628e-26,5.755389609055513e-26)
    sum e = 2.3989404528908424e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.633012374263444 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0879e+04 | 1536 |      1 | 4.974e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2868312.7456982485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9645.522491414997, dt = 39.633012374263444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.6%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 272.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.01003154953996e-23,3.2583692028057195e-23,-9.74380962114636e-23)
    sum a = (7.845366922707511e-26,1.410195577167038e-25,-9.274047696703737e-26)
    sum e = 2.3989538642030876e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 39.633463260172995 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0530e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835970.8436331917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9685.15550378926, dt = 39.633463260172995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.7%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 273.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.539083622562844e-23,3.918346164329315e-23,-1.0409203187164938e-22)
    sum a = (5.1226086953338804e-26,3.9236774118007e-26,-1.0290774213628353e-25)
    sum e = 2.39896716970307e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.633926071333256 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0525e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835512.997362766 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9724.788967049433, dt = 39.633926071333256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.41 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.734832889581311e-23,3.872130314171034e-23,-1.0837215168092437e-22)
    sum a = (2.6349273168131912e-27,6.465636935826064e-26,-8.73025498404052e-26)
    sum e = 2.398980354795996e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.634400677860555 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0472e+04 | 1536 |      1 | 5.041e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830586.5869855573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9764.422893120767, dt = 39.634400677860555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 315.03 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.660765599358108e-23,4.1787958132859227e-23,-1.115230884026032e-22)
    sum a = (7.349380604248557e-26,2.076141115261293e-26,-3.26139418039878e-26)
    sum e = 2.398993405015898e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.63488694660578 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0393e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823337.825203884 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9804.057293798627, dt = 21.20102027228677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.9%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 266.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.92000111513932e-23,4.135810332352813e-23,-1.1113076214223652e-22)
    sum a = (-5.039944308924055e-26,-1.1451249491511946e-25,-8.183186376019927e-26)
    sum e = 2.398685553431528e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.63515447912477 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0558e+04 | 1536 |      1 | 5.027e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1518405.1707848546 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 264                                                     [SPH][rank=0]
Info: time since start : 35.249689081 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001035953 s
sph::RenderFieldGetter compute custom field took :  0.000977253 s
rho_t_ampl=-0.00114268, rho_t_phi=3.14159 rad
eps_t_ampl=-4.06018e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-5.61401e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10203.15s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 9825.258314070914, dt = 39.63515447912477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.98 us    (2.2%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (78.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.56024570548376e-23,3.5385097669313545e-23,-1.1489591578426372e-22)
    sum a = (-1.3768786861386577e-25,1.5776699206849787e-26,3.595454379620889e-26)
    sum e = 2.3990095512148033e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.63565578852994 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2582e+04 | 1536 |      1 | 6.802e-02 | 0.1% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2097794.64144024 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9864.893468550039, dt = 39.63565578852994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.7%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 309.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.851315927633095e-23,3.8592979598119465e-23,-1.1113659263280304e-22)
    sum a = (9.997224231438284e-27,-2.6239239195715714e-25,-5.271982067064488e-26)
    sum e = 2.399023901572463e-16
    sum de = 1.3096323621833204e-32
Info: cfl dt = 39.63617097132923 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2852e+04 | 1536 |      1 | 6.722e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2122859.7327297637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9904.529124338569, dt = 39.63617097132923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 301.29 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.179328212907284e-23,2.2680524368780837e-23,-1.1498353775211893e-22)
    sum a = (-5.851088600570469e-26,1.3258105086478227e-25,5.072837256634525e-26)
    sum e = 2.399036381765275e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 39.636683860252305 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3920e+04 | 1536 |      1 | 6.421e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2222085.665186237 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9944.165295309898, dt = 39.636683860252305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 326.85 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.861896969093553e-23,3.576283516627532e-23,-1.1092268814905564e-22)
    sum a = (5.2440220128733114e-27,3.298049304050232e-26,5.0739087128626383e-26)
    sum e = 2.399048642964106e-16
    sum de = -5.7777898331617076e-33
Info: cfl dt = 39.63720597092618 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3631e+04 | 1536 |      1 | 6.500e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2195254.4189400333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9983.80197917015, dt = 39.63720597092618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 293.81 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.994159987349274e-23,3.50963018856046e-23,-1.0891132015689946e-22)
    sum a = (1.4388769759460268e-26,4.978285324535757e-27,2.7059120511491125e-26)
    sum e = 2.399060692133662e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.63773895697295 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3875e+04 | 1536 |      1 | 6.434e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217976.599296395 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10023.439185141076, dt = 39.63773895697295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 23.49 us   (6.9%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 299.53 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.099970401953851e-23,3.473806801731139e-23,-1.0830806165875737e-22)
    sum a = (-4.4122116246244414e-26,-2.720359123629864e-27,-4.8165323500523793e-26)
    sum e = 2.399072516198396e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.63828266930518 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3968e+04 | 1536 |      1 | 6.409e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2226629.982096137 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10063.07692409805, dt = 39.63828266930518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 308.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.56 us   (95.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.798410720330807e-23,3.447771394905157e-23,-1.1170811580399195e-22)
    sum a = (1.1167441951552378e-25,1.1288328651945109e-25,1.8552415552690467e-26)
    sum e = 2.3990841021802097e-16
    sum de = -4.237045877651919e-33
Info: cfl dt = 39.63883695588055 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0159e+04 | 1536 |      1 | 5.093e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2801848.580947009 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10102.715206767354, dt = 39.63883695588055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.3%)
   patch tree reduce : 1.14 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 356.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.528502581102386e-23,4.12440652192137e-23,-1.0965043132894376e-22)
    sum a = (4.3372970244405373e-26,-8.974188120336496e-26,1.5945666391575769e-26)
    sum e = 2.399095437359178e-16
    sum de = 1.925929944387236e-33
Info: cfl dt = 39.63940166174354 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9940e+04 | 1536 |      1 | 5.130e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2781537.921176608 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10142.354043723235, dt = 39.63940166174354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 314.47 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.544374143293074e-23,3.3670405801586986e-23,-1.090700189065721e-22)
    sum a = (1.3735204454407586e-25,-4.451152282236199e-26,6.15519857335169e-26)
    sum e = 2.3991065092873637e-16
    sum de = 8.859277744181285e-33
Info: cfl dt = 39.639976629070276 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9028e+04 | 1536 |      1 | 5.291e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2696878.7893260457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10181.993445384978, dt = 21.15941922712591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.3%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 330.03 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.017875748648555e-23,3.362452706712953e-23,-1.0686371103081871e-22)
    sum a = (1.1053778420238866e-25,1.0581786292613667e-25,8.677979569535806e-26)
    sum e = 2.398731709577791e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.64028968159899 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0347e+04 | 1536 |      1 | 5.061e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1504998.81559596 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 274                                                     [SPH][rank=0]
Info: time since start : 36.172216759 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000984146 s
sph::RenderFieldGetter compute custom field took :  0.0007665100000000001 s
rho_t_ampl=-0.00125097, rho_t_phi=3.14159 rad
eps_t_ampl=-3.63606e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.24157e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10581.05s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 10203.152864612104, dt = 39.64028968159899 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.14 us    (2.3%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 380.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.478151052178464e-23,3.940992331312494e-23,-1.0315683188735791e-22)
    sum a = (-6.204995504887534e-26,2.300572098921075e-26,-4.060303996539941e-27)
    sum e = 2.399119996600046e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.6408781751061 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2656e+04 | 1536 |      1 | 6.780e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2104863.9940670063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10242.793154293704, dt = 39.6408781751061 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 304.85 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.890903251123062e-23,3.8681210914301575e-23,-1.0511824983668836e-22)
    sum a = (7.788535157050757e-26,-6.21253086017947e-26,-8.834691783999075e-26)
    sum e = 2.399131718985538e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 39.64147838436441 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3435e+04 | 1536 |      1 | 1.143e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248266.9263466487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10282.434032468811, dt = 39.64147838436441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (0.8%)
   patch tree reduce : 1.71 us    (0.3%)
   gen split merge   : 742.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.1%)
   LB compute        : 642.24 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.425245844876175e-23,3.453073540314724e-23,-1.1029104996614832e-22)
    sum a = (6.89214321691921e-26,5.116370016513339e-26,-6.436678168591042e-26)
    sum e = 2.3991417901126844e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.642088308404276 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6876e+04 | 1536 |      1 | 9.102e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1567929.821185845 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10322.075510853176, dt = 39.642088308404276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 383.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.676545579562045e-23,3.880478125567389e-23,-1.12367379585365e-22)
    sum a = (-2.6607599375662616e-27,5.882669862392002e-26,1.0053373097195233e-25)
    sum e = 2.39915152062592e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.64270774375079 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2813e+04 | 1536 |      1 | 6.733e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2119570.7042450933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10361.71759916158, dt = 39.64270774375079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.3%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 339.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.544282561306324e-23,4.1288716904185386e-23,-1.0511344992760875e-22)
    sum a = (-1.0245217390667761e-25,1.2938124309313747e-25,-5.586406020666001e-26)
    sum e = 2.399160924489622e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.64333651745125 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3464e+04 | 1536 |      1 | 6.546e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2180077.9240530175 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10401.360306905332, dt = 39.64333651745125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 335.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.914710594409092e-23,4.781607768345049e-23,-1.104281036293514e-22)
    sum a = (2.162190357032001e-26,-2.7391495802391656e-26,-9.188468452229736e-26)
    sum e = 2.3991699914526695e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.643974454102505 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5920e+04 | 1536 |      1 | 5.926e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2408333.6793467635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10441.003643422782, dt = 39.643974454102505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 335.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.279756524794882e-23,4.362238419777627e-23,-1.1478476658093249e-22)
    sum a = (-9.862894603522317e-26,3.323933640499146e-26,4.658481833250519e-26)
    sum e = 2.3991787115534645e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.64462137579952 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0017e+04 | 1536 |      1 | 5.117e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2789013.821489411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10480.647617876884, dt = 39.64462137579952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.3%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 349.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.655475078627879e-23,4.6142240105444907e-23,-1.10193188379352e-22)
    sum a = (3.1257471111215307e-26,-1.6490658984459475e-25,1.831890692484713e-27)
    sum e = 2.399187075207341e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.645277102185275 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3167e+04 | 1536 |      1 | 6.630e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2152583.248287594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10520.292239252683, dt = 39.645277102185275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 321.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.99142314499741e-23,3.567761335041094e-23,-1.110076690011081e-22)
    sum a = (-1.03330483012282e-26,8.343469800620745e-27,4.406101634948353e-26)
    sum e = 2.399195073220255e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.64594145050236 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2835e+04 | 1536 |      1 | 6.727e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2121762.7417764463 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10559.937516354868, dt = 21.109898798424183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 320.36 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.922646375504435e-23,3.928769626803179e-23,-1.0924045271078545e-22)
    sum a = (5.9156701524531446e-27,-6.143209753976498e-26,-4.679575800773434e-27)
    sum e = 2.3987667653394054e-16
    sum de = -1.1555579666323415e-33
Info: cfl dt = 39.64629994381444 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6245e+04 | 1536 |      1 | 5.853e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1298482.9375408713 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 284                                                     [SPH][rank=0]
Info: time since start : 37.198418631 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001033529 s
sph::RenderFieldGetter compute custom field took :  0.000970962 s
rho_t_ampl=-0.00132794, rho_t_phi=3.14159 rad
eps_t_ampl=-3.19183e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.76313e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10958.94s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 10581.047415153293, dt = 39.64629994381444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.33 us    (2.1%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 428.38 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.949098979155579e-23,3.611568293314151e-23,-1.0994043506042706e-22)
    sum a = (-2.1877646515775407e-25,4.397982870796072e-26,1.23619938286489e-26)
    sum e = 2.3992045782035787e-16
    sum de = 3.4666738998970245e-33
Info: cfl dt = 39.646975946041856 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3128e+04 | 1536 |      1 | 6.641e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2149044.8189444 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 10620.693715097106, dt = 39.646975946041856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 340.93 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.64498561915417e-23,3.994946343017357e-23,-1.0911250179793522e-22)
    sum a = (-7.752369487996458e-26,1.0652544086074342e-26,-7.465009274565979e-26)
    sum e = 2.399212502684692e-16
    sum de = 2.8888949165808538e-33
Info: cfl dt = 39.64766126061965 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3073e+04 | 1536 |      1 | 6.657e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2143962.378713031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10660.340691043148, dt = 39.64766126061965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 342.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (75.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.613242494772798e-23,3.9710795847035955e-23,-1.1379708643990025e-22)
    sum a = (-2.6530101513403403e-26,-4.089702454476586e-26,4.115559534531996e-26)
    sum e = 2.399219169844325e-16
    sum de = -2.6963019221421302e-33
Info: cfl dt = 39.64835456879151 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2728e+04 | 1536 |      1 | 6.758e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2111948.1799416556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10699.988352303768, dt = 39.64835456879151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 370.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.597370932582112e-23,3.706793791565157e-23,-1.098696224564213e-22)
    sum a = (3.8826428991864964e-26,-6.775709742481982e-26,1.5052347827424627e-26)
    sum e = 2.3992254065258405e-16
    sum de = 4.8148248609680896e-33
Info: cfl dt = 39.64905564196069 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3018e+04 | 1536 |      1 | 6.673e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2138928.4720614953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10739.63670687256, dt = 39.64905564196069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 349.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.905543765117941e-23,3.384936128185388e-23,-1.0979028648636225e-22)
    sum a = (-5.406767523617656e-26,-2.7610127059966348e-27,-1.209325992358336e-26)
    sum e = 2.3992312341503614e-16
    sum de = -9.62964972193618e-34
Info: cfl dt = 39.64976428500656 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3008e+04 | 1536 |      1 | 6.676e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2138112.446198333 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10779.28576251452, dt = 39.64976428500656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 352.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.491560517977535e-23,3.502840084195515e-23,-1.108079302478452e-22)
    sum a = (-8.679760573031688e-26,-6.442721206454413e-26,3.823503250681383e-26)
    sum e = 2.399236646354934e-16
    sum de = -2.5037089277034066e-33
Info: cfl dt = 39.65048030082188 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3202e+04 | 1536 |      1 | 6.620e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2156098.036702366 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10818.935526799527, dt = 39.65048030082188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 350.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.115933546131287e-23,3.125097420709591e-23,-1.082941403787666e-22)
    sum a = (4.944363612137694e-26,-1.3061791043697678e-25,-4.308968214311107e-26)
    sum e = 2.399241637185166e-16
    sum de = -1.3481509610710651e-33
Info: cfl dt = 39.65120349030959 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3438e+04 | 1536 |      1 | 6.554e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2178075.639054037 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10858.586007100348, dt = 39.65120349030959 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 352.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.559014657287952e-23,2.4759410982039375e-23,-1.1161498013185261e-22)
    sum a = (1.7824508319618645e-27,-9.394663216071692e-26,8.553053719132909e-27)
    sum e = 2.399246201148113e-16
    sum de = -1.925929944387236e-34
Info: cfl dt = 39.651933652445926 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2541e+04 | 1536 |      1 | 6.814e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2094757.2647138622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10898.237210590658, dt = 39.651933652445926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 314.27 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.48891525761242e-23,2.1761903458491276e-23,-1.1025198669902132e-22)
    sum a = (-2.8545045932142906e-26,6.506293671588923e-26,9.534353715124678e-26)
    sum e = 2.399250333219856e-16
    sum de = -1.6370404527291505e-33
Info: cfl dt = 39.65267058433596 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2572e+04 | 1536 |      1 | 6.805e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2097746.4425659305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10937.889144243103, dt = 21.052821451379714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 324.45 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.348716458261356e-23,2.628396184471296e-23,-1.0652403098947564e-22)
    sum a = (-7.036805893136404e-26,-6.751032526055562e-26,6.136964931042114e-26)
    sum e = 2.398787260219611e-16
    sum de = -1.4444474582904269e-33
Info: cfl dt = 39.65306509644034 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2537e+04 | 1536 |      1 | 6.815e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1112037.2200090713 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 294                                                     [SPH][rank=0]
Info: time since start : 38.191879762 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008572990000000001 s
sph::RenderFieldGetter compute custom field took :  0.000765709 s
rho_t_ampl=-0.00137166, rho_t_phi=3.14159 rad
eps_t_ampl=-2.73859e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.21568e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11336.84s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 10958.941965694483, dt = 39.65306509644034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.09 us    (2.4%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 351.69 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.024672063534839e-23,2.2211817297837127e-23,-1.044481593877897e-22)
    sum a = (-6.168829835833235e-26,-7.473270599075521e-26,-8.856963001044086e-27)
    sum e = 2.399254931874533e-16
    sum de = -8.666684749742561e-34
Info: cfl dt = 39.65379030405889 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4167e+04 | 1536 |      1 | 6.356e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2245991.0938120037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10998.595030790922, dt = 39.65379030405889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 311.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.813051234325686e-23,1.910562548062567e-23,-1.0619172175610482e-22)
    sum a = (-7.328714507646101e-26,5.322150554350127e-26,-3.262523900620019e-26)
    sum e = 2.399258262175238e-16
    sum de = -1.2518544638517033e-33
Info: cfl dt = 39.65451683972894 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4263e+04 | 1536 |      1 | 6.331e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2254995.3639839534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11038.248821094981, dt = 39.65451683972894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 332.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.492974730146841e-23,2.375275250022335e-23,-1.0795671096197428e-22)
    sum a = (-1.8545238438629312e-25,-1.9541116241262624e-26,-3.501056669038024e-26)
    sum e = 2.399260865908431e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.65524947200494 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4999e+04 | 1536 |      1 | 6.144e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2323397.520846214 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11077.903337934711, dt = 39.65524947200494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.3%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 333.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5360517930667e-23,2.1535047841192997e-23,-1.09392358226646e-22)
    sum a = (-1.1089944089293166e-25,-5.179609483020954e-26,-5.943677458171939e-26)
    sum e = 2.399262990312342e-16
    sum de = 2.407412430484045e-34
Info: cfl dt = 39.65598796198873 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5626e+04 | 1536 |      1 | 5.994e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2381764.4940141654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11117.558587406716, dt = 39.65598796198873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.7%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 299.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.244742495358475e-23,1.8841480475270337e-23,-1.1223369592775565e-22)
    sum a = (9.434073099021347e-26,-7.089748890737411e-26,-2.8967835837915905e-26)
    sum e = 2.3992646636971056e-16
    sum de = 0
Info: cfl dt = 39.6567321050103 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4913e+04 | 1536 |      1 | 6.166e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2315466.000181515 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11157.214575368705, dt = 39.6567321050103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 298.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.026086275704146e-23,1.5650945151300105e-23,-1.1277832769922155e-22)
    sum a = (1.4750426450003255e-26,-4.5448686912553215e-26,-4.259560784497025e-26)
    sum e = 2.399265884258907e-16
    sum de = 1.2037062152420224e-34
Info: cfl dt = 39.657275974633635 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2284e+04 | 1536 |      1 | 6.893e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2071206.079747237 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11196.871307473715, dt = 39.657275974633635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 348.86 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.926889012012355e-23,1.435327573854555e-23,-1.1473776992667199e-22)
    sum a = (4.13321932049128e-26,-2.08848785923641e-25,-6.347330516333371e-26)
    sum e = 2.399266643801802e-16
    sum de = 1.2638915260041235e-34
Info: cfl dt = 39.65736891535377 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0342e+04 | 1536 |      1 | 7.551e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1890740.1628455939 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11236.52858344835, dt = 39.65736891535377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 334.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1429737180876395e-23,2.830919410466737e-24,-1.1766893050794105e-22)
    sum a = (-3.900725733713646e-26,5.463702089986881e-26,-2.886260005596795e-26)
    sum e = 2.399266933132981e-16
    sum de = -1.925929944387236e-34
Info: cfl dt = 39.657399546059 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5208e+04 | 1536 |      1 | 6.093e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2343033.8106388366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11276.185952363703, dt = 39.657399546059 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 290.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8290143785031217e-23,1.022236843761167e-23,-1.1812726141987375e-22)
    sum a = (6.019000635465427e-26,-2.1077110248569095e-27,-1.125790614838136e-25)
    sum e = 2.3992667646599395e-16
    sum de = 2.407412430484045e-34
Info: cfl dt = 39.65696109340673 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3453e+04 | 1536 |      1 | 6.549e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2179870.672708056 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11315.843351909762, dt = 20.993164325909675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 296.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1557040335947526e-23,9.053235687569206e-24,-1.2215064073696946e-22)
    sum a = (6.871477120316753e-27,5.367956785924725e-27,-3.886697582148738e-26)
    sum e = 2.3987913000523865e-16
    sum de = 4.81482486096809e-35
Info: cfl dt = 39.65656929199874 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3782e+04 | 1536 |      1 | 6.459e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1170122.6883465445 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 304                                                     [SPH][rank=0]
Info: time since start : 39.157363793 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001038778 s
sph::RenderFieldGetter compute custom field took :  0.000930046 s
rho_t_ampl=-0.00138104, rho_t_phi=3.14159 rad
eps_t_ampl=-2.2877e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.62089e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11714.73s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 11336.836516235671, dt = 39.65656929199874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.16 us    (2.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 342.04 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 26.35 us   (6.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1213156488482653e-23,9.344433905008192e-24,-1.2291824669324821e-22)
    sum a = (2.8105891379340706e-26,1.0878548614382046e-25,-8.683240408458354e-26)
    sum e = 2.399265955839414e-16
    sum de = 5.296307347064899e-34
Info: cfl dt = 39.65583296048609 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4075e+04 | 1536 |      1 | 6.380e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2237688.820758818 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11376.49308552767, dt = 39.65583296048609 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 350.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.280692585846409e-23,1.570904917352895e-23,-1.2731273016994827e-22)
    sum a = (-1.1702177201140937e-26,9.814310860673391e-26,-6.787737594678167e-26)
    sum e = 2.3992643009145594e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.65510280703356 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4029e+04 | 1536 |      1 | 6.392e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2233304.866942828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11416.148918488158, dt = 39.65510280703356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 297.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.151074827955802e-23,1.9390010344341037e-23,-1.2962857577659115e-22)
    sum a = (1.6197053212175205e-25,-1.3784357700590008e-25,2.686719368423898e-26)
    sum e = 2.399262536254668e-16
    sum de = -1.3481509610710651e-33
Info: cfl dt = 39.6543725531533 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4642e+04 | 1536 |      1 | 6.233e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290267.036944434 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11455.804021295191, dt = 39.6543725531533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 304.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.129159847956859e-23,9.244749050599688e-24,-1.2668462124422404e-22)
    sum a = (3.505486636191667e-26,-3.589721413853327e-26,-4.0143915482683015e-26)
    sum e = 2.399260289848262e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.65362786657167 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8396e+04 | 1536 |      1 | 5.409e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2639132.349398712 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11495.458393848345, dt = 39.65362786657167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 285.54 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.020704172987168e-23,9.842444855118668e-24,-1.2960511487393199e-22)
    sum a = (-9.454739195623803e-27,-6.513671357076458e-26,-6.06349524663773e-26)
    sum e = 2.399257595387286e-16
    sum de = 1.829633447167874e-33
Info: cfl dt = 39.652889684108416 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1029e+04 | 1536 |      1 | 4.950e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2883808.334422517 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11535.112021714916, dt = 39.652889684108416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 279.61 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9069579772872476e-23,6.679954070053489e-24,-1.3241573793265271e-22)
    sum a = (4.5723738732934785e-26,1.851063685403467e-26,-5.276257247707346e-27)
    sum e = 2.39925445660424e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.652158207620786 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0850e+04 | 1536 |      1 | 4.979e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2867064.3495521075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11574.764911399025, dt = 39.652158207620786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 306.78 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (61.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.192646096719605e-23,9.072364743236853e-24,-1.3152738680250884e-22)
    sum a = (4.944363612137694e-26,-7.371982255369841e-26,1.3251513731177449e-25)
    sum e = 2.399250877064718e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.65143363702438 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0235e+04 | 1536 |      1 | 5.080e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2809890.7563825394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11614.417069606645, dt = 39.65143363702438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 284.19 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.405589556111316e-23,4.320644671287589e-24,-1.2354110854112764e-22)
    sum a = (-3.1851621388535927e-26,9.587347699954928e-26,-2.9136666893073796e-26)
    sum e = 2.399246860817629e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.650716169872545 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0713e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2854282.872026349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11654.068503243669, dt = 39.650716169872545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.6%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 277.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.89 us   (94.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0960940933929287e-23,1.1484350084795858e-23,-1.2790126114360552e-22)
    sum a = (-1.3148803963312886e-26,5.998642941000379e-26,-1.0690308723432096e-25)
    sum e = 2.3992424123930545e-16
    sum de = -9.62964972193618e-34
Info: cfl dt = 39.650006001822696 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8702e+04 | 1536 |      1 | 5.352e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2667321.423851921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11693.71921941354, dt = 21.011847363319248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 277.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.143708779964988e-23,1.2033235152401911e-23,-1.3168923962549018e-22)
    sum a = (-1.8470323838445407e-26,-2.7281290915907487e-28,-1.5296703700326146e-26)
    sum e = 2.3987799475898927e-16
    sum de = 4.237045877651919e-33
Info: cfl dt = 39.6496335903066 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2586e+04 | 1536 |      1 | 6.801e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1112273.642018292 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 314                                                     [SPH][rank=0]
Info: time since start : 40.038201766 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000908075 s
sph::RenderFieldGetter compute custom field took :  0.0008310310000000001 s
rho_t_ampl=-0.00135584, rho_t_phi=3.14159 rad
eps_t_ampl=-1.85044e-07, eps_t_phi=6.28319 rad
vx_t_ampl=1.93073e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12092.63s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 11714.73106677686, dt = 39.6496335903066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.89 us    (2.2%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.020704172987168e-23,1.138935708013163e-23,-1.313333386481858e-22)
    sum a = (3.314325242618945e-26,7.285813184547789e-26,-1.4090477098488076e-26)
    sum e = 2.3992363470221866e-16
    sum de = 3.274080905458301e-33
Info: cfl dt = 39.64893395987283 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3916e+04 | 1536 |      1 | 6.422e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2222502.3313228497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11754.380700367166, dt = 39.64893395987283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 282.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.324909114975326e-23,1.5727884383135532e-23,-1.3186809782273331e-22)
    sum a = (2.0924422809987104e-27,-3.7768035742465845e-27,4.499416203803225e-26)
    sum e = 2.399229918730481e-16
    sum de = -1.1555579666323415e-33
Info: cfl dt = 39.648243153720905 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3576e+04 | 1536 |      1 | 6.515e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2190877.704579046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11794.029634327038, dt = 39.648243153720905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 308.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2402607832916646e-23,1.4058796778270924e-23,-1.2891283686816649e-22)
    sum a = (9.170580367340027e-27,5.300004884303172e-26,-1.101269203296978e-25)
    sum e = 2.399224018517047e-16
    sum de = 9.62964972193618e-34
Info: cfl dt = 39.647560282290314 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3507e+04 | 1536 |      1 | 6.534e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2184403.4268003535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11833.677877480759, dt = 39.647560282290314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 279.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.274649168038152e-23,1.7285706046800275e-23,-1.3635423977663386e-22)
    sum a = (4.481959700657732e-26,4.5564416548983596e-26,-8.956940033058324e-26)
    sum e = 2.399217681784253e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.646885567765985 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9173e+04 | 1536 |      1 | 5.265e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2710863.198607926 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11873.32543776305, dt = 39.646885567765985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (0.9%)
   patch tree reduce : 1.46 us    (0.3%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 545.83 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.507432080168221e-23,1.8944835176364574e-23,-1.3949785978520271e-22)
    sum a = (1.5215413623558525e-26,2.1960679218848314e-25,-3.292318856817035e-26)
    sum e = 2.3992109463977264e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.646219192857465 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0894e+04 | 1536 |      1 | 4.972e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870723.4655438964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11912.972323330816, dt = 39.646219192857465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 308.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.515367861263564e-23,3.110146307087112e-23,-1.3968021679790792e-22)
    sum a = (1.1722843297743392e-25,-1.8713759709648477e-26,3.175546108689804e-26)
    sum e = 2.3992038197995394e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.64556133789934 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9825e+04 | 1536 |      1 | 5.150e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2771336.796254522 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11952.618542523673, dt = 39.64556133789934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 305.37 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.163456650716597e-23,2.5635346715612084e-23,-1.3713912175691205e-22)
    sum a = (1.965862439308665e-26,-7.038764152107066e-26,-5.522284266158251e-26)
    sum e = 2.3991963099354253e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.6449121807064 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0790e+04 | 1536 |      1 | 4.989e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860984.9227703693 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11992.264103861571, dt = 39.6449121807064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 273.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.076163058667821e-23,2.182050718047781e-23,-1.410525783427638e-22)
    sum a = (-1.4672928587744044e-25,-1.1631232095952634e-26,2.3700423144648124e-26)
    sum e = 2.3991884251685014e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.644271896533766 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0045e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791697.861003 (tsim/hr)                                [sph::Model][rank=0]
---------------- t = 12031.909016042278, dt = 39.644271896533766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 291.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.14767667051266e-23,2.2524054570340694e-23,-1.3854853935260359e-22)
    sum a = (-2.4928479026713035e-26,-7.859431069260086e-26,7.041144627915105e-26)
    sum e = 2.399180174273981e-16
    sum de = -1.925929944387236e-33
Info: cfl dt = 39.64364065803105 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0630e+04 | 1536 |      1 | 5.015e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2846003.7049961053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12071.553287938812, dt = 21.07232937923618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 283.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.361942760086928e-23,1.9540536218199778e-23,-1.3613889391368612e-22)
    sum a = (3.913642044090181e-26,-3.6804294830044777e-26,3.834951655478059e-26)
    sum e = 2.398753657787824e-16
    sum de = -7.318533788671496e-33
Info: cfl dt = 39.64331046946758 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0918e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1527008.4218383848 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 41.062695178000006 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0011669080000000001 s
sph::RenderFieldGetter compute custom field took :  0.001004144 s
rho_t_ampl=-0.00129671, rho_t_phi=3.14159 rad
eps_t_ampl=-1.43774e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.45101e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12470.52s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 12092.625617318048, dt = 39.64331046946758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.93 us    (2.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 348.72 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.623823536233256e-23,1.8521785648063118e-23,-1.3495640189439384e-22)
    sum a = (3.1205805869709165e-26,-7.085907423622984e-26,-2.1667286323510986e-26)
    sum e = 2.399169461214594e-16
    sum de = 1.0400021699691074e-32
Info: cfl dt = 39.642691717299336 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2620e+04 | 1536 |      1 | 6.790e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2101729.15891676 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 12132.268927787516, dt = 39.642691717299336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 306.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.676728743535544e-23,1.5037732518945888e-23,-1.3700498382141187e-22)
    sum a = (-9.687232782401437e-26,-2.3574372905763632e-25,-4.352357292781966e-27)
    sum e = 2.399158902260089e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.64208339145907 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2449e+04 | 1536 |      1 | 6.842e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2085821.2528286527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12171.911619504815, dt = 39.64208339145907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 302.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.983670527875566e-23,2.4241331314681358e-24,-1.3683431513532608e-22)
    sum a = (-1.2585652830895948e-25,1.3570936484031944e-26,-1.1679679875562065e-26)
    sum e = 2.3991494625970884e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.641479889365776 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3662e+04 | 1536 |      1 | 6.491e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2198475.096169028 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12211.553702896275, dt = 39.641479889365776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 364.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.510168922520085e-23,7.903784165462985e-24,-1.3744255009665644e-22)
    sum a = (5.760674427934722e-26,1.4010307990485e-25,3.6545207415715155e-26)
    sum e = 2.399139672956251e-16
    sum de = 6.548161810916602e-33
Info: cfl dt = 39.64088621289303 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3852e+04 | 1536 |      1 | 6.440e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2216097.525051318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12251.195182785641, dt = 39.64088621289303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 290.51 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.102707244305715e-23,1.596556790487634e-23,-1.3503801273800254e-22)
    sum a = (7.207301190106669e-26,2.2986012263660617e-26,5.881168460819464e-26)
    sum e = 2.3991295727909503e-16
    sum de = 0
Info: cfl dt = 39.64030252062687 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3737e+04 | 1536 |      1 | 6.471e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2205363.866493518 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12290.836068998535, dt = 39.64030252062687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 332.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.380459582642729e-23,1.455538693423998e-23,-1.3226536832401072e-22)
    sum a = (-6.897309741069824e-27,1.4174042406242547e-26,-6.30425044261068e-26)
    sum e = 2.399119173196258e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.63972896841016 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3723e+04 | 1536 |      1 | 6.475e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2203998.180001923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12330.476371519162, dt = 39.63972896841016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 337.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2323250021963214e-23,1.494258239947497e-23,-1.371795245713144e-22)
    sum a = (4.7351193840378225e-26,-4.7885845840310066e-26,2.3213329208949758e-26)
    sum e = 2.399108485700613e-16
    sum de = -1.925929944387236e-33
Info: cfl dt = 39.63916570916469 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3710e+04 | 1536 |      1 | 6.478e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2202768.564955661 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12370.116100487572, dt = 39.63916570916469 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 308.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.486269997247305e-23,1.1814432854623405e-23,-1.3454978863452187e-22)
    sum a = (3.970473809746936e-26,7.29380515159327e-28,-7.223558612657898e-26)
    sum e = 2.399097522145872e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.63861289285684 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2873e+04 | 1536 |      1 | 6.715e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2125046.3639287422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12409.755266196737, dt = 39.63861289285684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.3%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 341.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.634404577693712e-23,1.2806796209930202e-23,-1.393048647559536e-22)
    sum a = (-1.4156276172682635e-26,3.7469005498230964e-26,-8.493298369496901e-26)
    sum e = 2.399086294673716e-16
    sum de = -1.925929944387236e-33
Info: cfl dt = 39.63807066646331 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0287e+04 | 1536 |      1 | 7.571e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1884697.9517296122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12449.393879089594, dt = 21.126288769644816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.32 us   (7.1%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 330.94 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.438655310675246e-23,1.4326538976066122e-23,-1.4135083710903755e-22)
    sum a = (-4.5207086317873376e-26,2.913343180141462e-26,4.1624952530615136e-26)
    sum e = 2.3987142217370704e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.63778831107218 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2150e+04 | 1536 |      1 | 6.934e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1096771.3952981322 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 334                                                     [SPH][rank=0]
Info: time since start : 42.057042759000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000909457 s
sph::RenderFieldGetter compute custom field took :  0.0008000930000000001 s
rho_t_ampl=-0.00120511, rho_t_phi=3.14159 rad
eps_t_ampl=-1.05992e-07, eps_t_phi=6.28319 rad
vx_t_ampl=4.88493e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12848.41s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 12470.520167859238, dt = 39.63778831107218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.89 us    (2.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 337.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.33284489607067e-23,1.5393190490503563e-23,-1.383640662987811e-22)
    sum a = (1.2453906465055289e-25,6.534152033988939e-27,-1.149481807960654e-25)
    sum e = 2.399071997632015e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.637248102506604 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1600e+04 | 1536 |      1 | 4.861e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2935637.3354037353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12510.157956170311, dt = 39.637248102506604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 326.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.137004047065453e-23,1.520440246896253e-23,-1.460234022169267e-22)
    sum a = (-3.5158196844928954e-26,-2.6097751989359155e-26,1.3536907046756162e-25)
    sum e = 2.3990583565429415e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 39.636718605672385 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0729e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2854702.019270612 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12549.795204272818, dt = 39.636718605672385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 299.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.64498561915417e-23,1.352323165574067e-23,-1.356968729665557e-22)
    sum a = (1.1030529061561105e-25,-1.907872115929171e-26,-1.8586663649264467e-27)
    sum e = 2.3990463222727384e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.63620017342592 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0904e+04 | 1536 |      1 | 4.970e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870966.355208858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12589.43192287849, dt = 39.63620017342592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.13 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 286.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.412111125037353e-23,1.2906074200561846e-23,-1.3849017203351e-22)
    sum a = (-5.424850358144805e-27,3.43613778010312e-26,-2.0891767808517154e-26)
    sum e = 2.3990340578112577e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.63569297597915 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2466e+04 | 1536 |      1 | 6.837e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2087052.3175601782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12629.068123051915, dt = 39.63569297597915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 281.10 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.189909254367741e-23,1.5327000857979007e-23,-1.3969543163746374e-22)
    sum a = (-2.932002455473502e-26,-3.603769162746244e-26,-4.0498908091820033e-26)
    sum e = 2.3990216015933676e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.635197146761946 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6532e+04 | 1536 |      1 | 5.789e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2464721.153018788 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12668.703816027893, dt = 39.635197146761946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 333.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.978288425158588e-23,1.2503524471366748e-23,-1.41689185140116e-22)
    sum a = (-6.64673331976504e-26,-1.1322425062486448e-25,8.484700178017151e-27)
    sum e = 2.3990089672635686e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.63471281616817 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9723e+04 | 1536 |      1 | 5.168e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2761152.1553446786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12708.339013174655, dt = 39.63471281616817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 313.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.660857181344858e-23,6.486338577509225e-24,-1.4038215899986095e-22)
    sum a = (3.456404656760833e-26,1.926503641375636e-26,2.783412222897146e-26)
    sum e = 2.3989961687866163e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.63424011134518 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0676e+04 | 1536 |      1 | 5.007e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849602.6769636516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12747.973725990823, dt = 39.63424011134518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 272.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.935964259316756e-23,9.875488006139439e-24,-1.3889552032307472e-22)
    sum a = (8.085610295711067e-27,5.885573509509851e-26,-5.0975124125569715e-26)
    sum e = 2.3989832203063335e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.63377915616885 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0517e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834794.0639332486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12787.607966102169, dt = 39.63377915616885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.8%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 269.90 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.92009269712607e-23,1.2992668374403733e-23,-1.4247762943163168e-22)
    sum a = (-7.062638513889475e-26,-2.429505004772002e-26,-1.773804137252778e-26)
    sum e = 2.3989701361275823e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.6333300712183 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0711e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2852781.570946595 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12827.241745258338, dt = 21.172973142089177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 283.26 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.64498561915417e-23,1.0830468330138949e-23,-1.4219454090639556e-22)
    sum a = (2.3895174196590212e-26,-4.9287795286706923e-26,3.3244632084642274e-26)
    sum e = 2.3986656137767415e-16
    sum de = 1.3096323621833204e-32
Info: cfl dt = 39.63309796902852 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0811e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1528952.0597158577 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 344                                                     [SPH][rank=0]
Info: time since start : 42.904188664 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001049838 s
sph::RenderFieldGetter compute custom field took :  0.000969248 s
rho_t_ampl=-0.00108334, rho_t_phi=3.14159 rad
eps_t_ampl=-7.2645e-08, eps_t_phi=6.28319 rad
vx_t_ampl=6.19662e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13226.31s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 12848.414718400427, dt = 39.63309796902852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.89 us    (2.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 343.52 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.851315927633095e-23,8.612395556262869e-24,-1.403372257581275e-22)
    sum a = (4.8203670325229556e-26,-1.5827728093025366e-25,-5.008916220931054e-26)
    sum e = 2.3989536792199075e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.63266433799413 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0397e+04 | 1536 |      1 | 5.053e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823607.076326357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12888.047816369455, dt = 39.63266433799413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 286.07 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.05764623611202e-23,1.7964650287204052e-25,-1.4397378092762804e-22)
    sum a = (4.3682961693442215e-26,6.69893589996458e-27,5.197292578458008e-27)
    sum e = 2.3989383087385873e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63224588252453 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0876e+04 | 1536 |      1 | 4.975e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2868049.9395017563 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12927.68048070745, dt = 39.63224588252453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 287.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.158166129986368e-23,3.714520974247919e-24,-1.4267222579771573e-22)
    sum a = (2.7692569447291575e-26,-9.960328866529217e-26,-7.311183622074483e-26)
    sum e = 2.3989248817375765e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.63183966674734 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0533e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836123.673036941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12967.312726589975, dt = 39.63183966674734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (0.9%)
   patch tree reduce : 1.54 us    (0.3%)
   gen split merge   : 842.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 547.84 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.412111125037353e-23,-2.339298804915052e-24,-1.4712156569226818e-22)
    sum a = (4.9340305638364654e-26,-9.62716374032072e-26,1.1222633449511555e-26)
    sum e = 2.3989113652504077e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.63144582612766 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0749e+04 | 1536 |      1 | 4.995e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856214.4283560314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13006.944566256721, dt = 39.63144582612766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 276.81 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.581407788404676e-23,-6.088858500136918e-24,-1.4500563141251054e-22)
    sum a = (6.768146637304471e-26,3.8020893961179924e-26,-3.2562575835917446e-26)
    sum e = 2.398897794596454e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.63106446236449 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0525e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835361.169025315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13046.576012082849, dt = 39.63106446236449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.9%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 263.16 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.856514866376574e-23,-1.9208168068704985e-24,-1.4716375652941366e-22)
    sum a = (-7.240883597085661e-26,1.0796796190120876e-25,8.734927995396798e-26)
    sum e = 2.398884184617531e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.63069567392922 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0782e+04 | 1536 |      1 | 4.990e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859162.8009983143 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13086.207076545214, dt = 39.63069567392922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 318.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.24281446167003e-23,3.744121928553344e-24,-1.4132592655491605e-22)
    sum a = (3.154162993949908e-26,-8.080938854746272e-26,5.312930870329081e-26)
    sum e = 2.3988705503322325e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.630339555831625 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9725e+04 | 1536 |      1 | 5.167e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2761005.795733497 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13125.837772219144, dt = 39.630339555831625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 339.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.576117267674446e-23,-3.1991052959050624e-24,-1.398984746439448e-22)
    sum a = (-6.4581551882676254e-27,5.292951367933485e-26,-5.568842474291683e-26)
    sum e = 2.398856906785419e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 39.62999619960378 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0614e+04 | 1536 |      1 | 5.017e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2843580.2950071455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13165.468111774975, dt = 39.62999619960378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 276.91 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.475597373800098e-23,1.5485622836635643e-24,-1.4426164856795221e-22)
    sum a = (-4.691203928757603e-26,3.702190438728695e-26,-7.14408363256416e-26)
    sum e = 2.3988432690296327e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 39.62966569328386 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0433e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826688.8429960436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13205.09810797458, dt = 21.211160967037358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.7%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 270.57 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.42269216649781e-23,2.0187418139902003e-24,-1.4608912565245467e-22)
    sum a = (2.570345764930515e-26,-2.356920764297145e-26,3.395420886644249e-26)
    sum e = 2.398612755223481e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62949753000749 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0592e+04 | 1536 |      1 | 5.021e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1520852.5398373795 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 354                                                     [SPH][rank=0]
Info: time since start : 43.725344916000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001073252 s
sph::RenderFieldGetter compute custom field took :  0.0010164660000000002 s
rho_t_ampl=-0.000934453, rho_t_phi=3.14159 rad
eps_t_ampl=-4.45662e-08, eps_t_phi=6.28319 rad
vx_t_ampl=7.3533e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13604.20s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 13226.309268941617, dt = 39.62949753000749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.02 us    (2.1%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 400.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.549664664023302e-23,4.41724898567129e-25,-1.4362576178169818e-22)
    sum a = (-4.24688285180479e-26,1.07004195761619e-25,-7.554984320350123e-26)
    sum e = 2.3988262959247863e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.629183417616716 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0300e+04 | 1536 |      1 | 5.069e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2814358.410804106 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13265.938766471625, dt = 39.629183417616716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 317.82 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.301010189702546e-23,7.269674052914958e-24,-1.4878953565569895e-22)
    sum a = (-3.303992194317717e-26,2.764799304019131e-26,-9.158400223640388e-26)
    sum e = 2.398810717365846e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.62888588580129 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0667e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2848378.012543962 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13305.567949889242, dt = 39.62888588580129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 278.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.094679881223623e-23,6.793120323417502e-24,-1.5273661794391736e-22)
    sum a = (2.3585182747553368e-26,-2.858319571801578e-26,-4.64899229362561e-27)
    sum e = 2.398797235688831e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.62860146094143 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0415e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824946.4186822353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13345.196835775043, dt = 39.62860146094143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.7%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 280.56 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.322172272623462e-23,4.5462570937121246e-24,-1.5119828221246767e-22)
    sum a = (7.845366922707511e-26,-1.1061000327959654e-25,-1.114573788871064e-25)
    sum e = 2.3987838123851725e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.628330241239595 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0295e+04 | 1536 |      1 | 5.070e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813804.3099814816 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13384.825437235984, dt = 39.628330241239595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 274.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.740123410311541e-23,-1.4627850664529936e-24,-1.5773148552332727e-22)
    sum a = (-7.388129535378163e-26,1.6248125615216796e-25,4.640922581913401e-26)
    sum e = 2.398770477737543e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.628072294890735 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0202e+04 | 1536 |      1 | 5.086e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805119.6882908284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13424.453767477224, dt = 39.628072294890735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 307.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.126423005604995e-23,1.0387187016171448e-23,-1.5276438239473728e-22)
    sum a = (-2.9087530967957384e-26,3.2072195138100844e-26,-1.2443311834179302e-25)
    sum e = 2.3987572463161566e-16
    sum de = 0
Info: cfl dt = 39.62782768674933 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0511e+04 | 1536 |      1 | 5.034e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833800.1526181856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13464.081839772114, dt = 39.62782768674933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 267.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.094679881223623e-23,9.074457185517853e-24,-1.610804729496287e-22)
    sum a = (-1.8082834527149352e-27,5.741326766236667e-26,-1.2277728046116133e-25)
    sum e = 2.398744132713191e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.62759647807604 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9628e+04 | 1536 |      1 | 5.184e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2751750.0898724687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13503.709667458863, dt = 39.62759647807604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 301.70 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.158166129986368e-23,1.1852083899371005e-23,-1.659130328473125e-22)
    sum a = (-2.8725874277414395e-26,-2.9713316114833037e-26,-1.9265365788203315e-27)
    sum e = 2.398731151389469e-16
    sum de = 2.7733391199176196e-32
Info: cfl dt = 39.62737872653004 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9784e+04 | 1536 |      1 | 5.157e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2766239.555872327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13543.337263936939, dt = 39.62737872653004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.4%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 303.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.047065194651563e-23,8.94801296508676e-24,-1.6359486418563072e-22)
    sum a = (-1.1650511959634796e-26,9.076846299302812e-26,8.134544446412313e-27)
    sum e = 2.39871831665943e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.627174486160214 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0120e+04 | 1536 |      1 | 5.100e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2797471.5946805254 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13582.96464266347, dt = 21.239176819335626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.7%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 762.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 270.25 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9253832178563e-23,1.326330705480087e-23,-1.6322274602369765e-22)
    sum a = (3.688898243538468e-26,3.0065998240109516e-26,8.330353404346872e-26)
    sum e = 2.398561023384189e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 39.62707446047456 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0665e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1526479.5705681131 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 364                                                     [SPH][rank=0]
Info: time since start : 44.549095415000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00098613 s
sph::RenderFieldGetter compute custom field took :  0.0008547040000000001 s
rho_t_ampl=-0.000762166, rho_t_phi=3.14159 rad
eps_t_ampl=-2.24586e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.32606e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13982.10s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 13604.203819482806, dt = 39.62707446047456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.62 us    (2.3%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 347.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.200490295828199e-23,1.380988656100471e-23,-1.5912340694664282e-22)
    sum a = (6.9618912929525e-26,-1.4044825694743698e-26,-5.132174019962237e-26)
    sum e = 2.398702525391951e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62688714800038 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0062e+04 | 1536 |      1 | 5.109e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2792058.01496356 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13643.83089394328, dt = 39.62688714800038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 311.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.496759456721014e-23,1.2379075820888832e-23,-1.6382453063711983e-22)
    sum a = (-3.497736849965746e-26,1.5352466524336107e-27,-2.9718210192802877e-26)
    sum e = 2.3986882788327986e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.62671741115351 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0616e+04 | 1536 |      1 | 5.017e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2843483.61266317 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13683.457781091282, dt = 39.62671741115351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 297.72 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.226942899479343e-23,1.2748559795519999e-23,-1.6457412543160603e-22)
    sum a = (-6.974807603329036e-27,-2.1477304592703792e-26,-1.0243886157110929e-26)
    sum e = 2.398676085061939e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.6265613260818 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9754e+04 | 1536 |      1 | 5.162e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2763441.8948643706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13723.084498502434, dt = 39.6265613260818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 282.02 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.279848106781632e-23,1.144206854277827e-23,-1.6459420364696254e-22)
    sum a = (-4.24688285180479e-26,-3.879630775243218e-26,-2.890110813706061e-26)
    sum e = 2.3986640900896163e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.626418952094006 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9735e+04 | 1536 |      1 | 5.166e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2761620.5347191617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13762.711059828516, dt = 39.626418952094006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 265.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.084098839763165e-23,9.561595831368879e-24,-1.661091118416656e-22)
    sum a = (-2.98625095905495e-26,-1.5931146240448897e-27,4.2999268482740993e-26)
    sum e = 2.3986523177318765e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62629032287144 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9587e+04 | 1536 |      1 | 5.191e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2747920.611834128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13802.33747878061, dt = 39.62629032287144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 300.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.904221134935384e-23,1.0235284747988205e-23,-1.6298063312172118e-22)
    sum a = (-2.1518573087307726e-26,-1.4421331727465178e-26,2.4207765563114223e-27)
    sum e = 2.398640780852714e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.62617546871192 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9526e+04 | 1536 |      1 | 5.202e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2742172.9928675294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13841.96376910348, dt = 39.62617546871192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 279.53 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.808991761791265e-23,9.409422320667729e-24,-1.6368869455609823e-22)
    sum a = (1.237382534072077e-26,1.3380714171814236e-26,5.0309551359916644e-27)
    sum e = 2.3986294921766926e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.626074416262526 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6278e+04 | 1536 |      1 | 5.845e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2440526.1369749424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13881.589944572192, dt = 39.626074416262526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 281.39 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.957126342237672e-23,1.0491363517513393e-23,-1.634376218562917e-22)
    sum a = (-1.2156831326394977e-25,-4.9077700272342505e-26,-8.973957755201115e-27)
    sum e = 2.398618464156393e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.62598718851946 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4117e+04 | 1536 |      1 | 6.369e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2239789.8755441485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13921.216018988454, dt = 39.62598718851946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 294.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.269358647307923e-23,7.308687768407283e-24,-1.6407070365154243e-22)
    sum a = (2.978501172829029e-26,3.7311048734785886e-26,5.189061707781067e-26)
    sum e = 2.398607708957225e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62591380482707 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3984e+04 | 1536 |      1 | 6.404e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2227440.0201754356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13960.842006176974, dt = 21.25636384702011 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 320.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.502141559437992e-23,9.812998896537762e-24,-1.6176178838340237e-22)
    sum a = (1.6687873006483544e-26,-4.796835760234923e-26,-9.312672459757063e-26)
    sum e = 2.3985157108308976e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 39.625884356171994 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2395e+04 | 1536 |      1 | 6.859e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1115722.8894863152 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 374                                                     [SPH][rank=0]
Info: time since start : 45.429178529000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008734190000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007852540000000001 s
rho_t_ampl=-0.000570789, rho_t_phi=3.14159 rad
eps_t_ampl=-6.87557e-09, eps_t_phi=6.28319 rad
vx_t_ampl=9.09059e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14359.99s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 13982.098370023994, dt = 39.625884356171994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (2.2%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.36 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.544465725279823e-23,7.006491312682676e-24,-1.6699328789216262e-22)
    sum a = (1.0821284833461232e-25,5.296217970941067e-26,-5.869747808874392e-26)
    sum e = 2.3985946817731825e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.62582802056091 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0272e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811425.8938709754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14021.724254380166, dt = 39.62582802056091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.5%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 318.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.158166129986368e-23,1.1104978674571453e-23,-1.6863707939383751e-22)
    sum a = (2.0782343395845217e-26,8.57399661425828e-26,-2.6008543365250736e-26)
    sum e = 2.3985831744700967e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 39.6257898300327 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9794e+04 | 1536 |      1 | 5.155e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2767055.761225657 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14061.350082400726, dt = 39.6257898300327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.3%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 317.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.179328212907284e-23,1.5151568301367312e-23,-1.6902002541425314e-22)
    sum a = (1.0850992347327265e-25,-7.152599543507373e-26,-4.566992607982642e-26)
    sum e = 2.3985734831336426e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.62576550614259 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9974e+04 | 1536 |      1 | 5.124e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2783819.436700783 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14100.975872230758, dt = 39.62576550614259 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 286.57 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.718961327390625e-23,9.201721591657855e-24,-1.712192801053815e-22)
    sum a = (-5.382226533902239e-26,4.1732728115825e-26,5.662839881406588e-26)
    sum e = 2.3985641097450726e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.625755068494804 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8056e+04 | 1536 |      1 | 5.475e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2605677.9891026737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14140.6016377369, dt = 39.625755068494804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 331.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.28513862751186e-23,1.3099282829329249e-23,-1.6694851232709444e-22)
    sum a = (-1.5353618144587453e-25,2.0229502607277675e-26,4.94753762415384e-26)
    sum e = 2.39855507085783e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.62575851595761 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3864e+04 | 1536 |      1 | 6.436e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2216362.553750721 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14180.227392805395, dt = 39.62575851595761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 312.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.322263854610212e-23,1.347438539897421e-23,-1.65129734975885e-22)
    sum a = (-5.618595013792834e-27,-1.5322852981673497e-26,1.1951142802673038e-26)
    sum e = 2.3985463763598527e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.625775844040824 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4214e+04 | 1536 |      1 | 6.343e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2248849.264772747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14219.853151321353, dt = 39.625775844040824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 287.76 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.713762388647146e-23,1.2162979490134208e-23,-1.6539962477647922e-22)
    sum a = (-1.176934201509892e-25,-1.7475780553036545e-26,-1.1153225976761315e-25)
    sum e = 2.3985380358560666e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62580704462079 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4299e+04 | 1536 |      1 | 6.321e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2256727.63432589 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 14259.478927165394, dt = 39.62580704462079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 320.64 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.004832610796481e-23,1.1427989764467847e-23,-1.722657433966373e-22)
    sum a = (-8.247064175417757e-26,-4.4979701232758336e-26,9.54087131477951e-26)
    sum e = 2.3985300585623677e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.625852105947885 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3965e+04 | 1536 |      1 | 6.409e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2225678.9245063653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14299.104734210014, dt = 39.625852105947885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 293.24 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.697982408443209e-23,9.10131019479067e-24,-1.6438499030864095e-22)
    sum a = (-2.902294941607471e-26,5.980434601308926e-27,-4.0387872368104247e-26)
    sum e = 2.39852245329657e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.62591101265315 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4122e+04 | 1536 |      1 | 6.368e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2240303.1717756763 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14338.730586315962, dt = 21.262334249220658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 320.76 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7614686572059546e-23,1.0238023005788031e-23,-1.6793425845761536e-22)
    sum a = (-2.566470871817554e-26,4.4666051844259383e-26,-8.406399138467621e-26)
    sum e = 2.3984814637789544e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.625952770279035 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4194e+04 | 1536 |      1 | 6.349e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205670.9789243285 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 384                                                     [SPH][rank=0]
Info: time since start : 46.343956924000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001044679 s
sph::RenderFieldGetter compute custom field took :  0.0010024600000000002 s
rho_t_ampl=-0.000365109, rho_t_phi=3.14159 rad
eps_t_ampl=1.79245e-09, eps_t_phi=5.92518e-07 rad
vx_t_ampl=9.62778e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14737.89s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 14359.992920565182, dt = 39.625952770279035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.65 us    (2.2%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 377.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.687401366982751e-23,1.2418993678107513e-23,-1.7172970233052906e-22)
    sum a = (-2.5303052027632555e-26,-3.0007171636087474e-26,7.422094764611115e-26)
    sum e = 2.3985134974993563e-16
    sum de = 2.7733391199176196e-32
Info: cfl dt = 39.626028432973364 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5050e+04 | 1536 |      1 | 6.132e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2326522.3395246943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14399.618873335461, dt = 39.626028432973364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 308.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.581590952378174e-23,9.750199795487047e-24,-1.656525251896416e-22)
    sum a = (-9.105998815457351e-27,-4.1497516301619496e-26,-4.035724228370116e-26)
    sum e = 2.398505865408709e-16
    sum de = -2.1570415377137042e-32
Info: cfl dt = 39.62612237760681 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3376e+04 | 1536 |      1 | 6.571e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2171035.5121467556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14439.244901768434, dt = 39.62612237760681 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 331.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.666239284061836e-23,7.878122685822404e-24,-1.6952186551717152e-22)
    sum a = (-9.616193075330494e-27,9.248806664095572e-27,-1.0377986708002835e-25)
    sum e = 2.398499643100829e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.626230073059865 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3872e+04 | 1536 |      1 | 6.434e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217117.1259370395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14478.871024146041, dt = 39.626230073059865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 297.65 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4440374133922244e-23,9.249912345672708e-24,-1.7489086675288492e-22)
    sum a = (-3.36921956171922e-26,4.537410278827934e-26,2.1826898572637466e-26)
    sum e = 2.3984938248720404e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.6263514992401 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3653e+04 | 1536 |      1 | 6.494e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2196743.24579806 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 14518.4972542191, dt = 39.6263514992401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.3%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 325.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2959028329458167e-23,1.176371050377475e-23,-1.7153728510066063e-22)
    sum a = (6.367741015631878e-27,7.512746072663807e-26,-1.4743180526478782e-26)
    sum e = 2.3984884199251144e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.62648662061601 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4745e+04 | 1536 |      1 | 6.207e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2298169.082982136 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14558.123605718341, dt = 39.62648662061601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.3%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 311.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4546184548526823e-23,1.5331027517738892e-23,-1.728460749509101e-22)
    sum a = (-4.6582673372974383e-26,-5.197072359877197e-26,-1.43648810672498e-26)
    sum e = 2.3984834341973455e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 39.626635398392416 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0227e+04 | 1536 |      1 | 5.082e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807346.668373596 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14597.750092338958, dt = 39.626635398392416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.7%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 264.09 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.158349293959867e-23,1.0753500036605175e-23,-1.7340781151627713e-22)
    sum a = (-5.876921221323539e-27,9.334544350332783e-27,3.3406956871476286e-26)
    sum e = 2.3984788732248335e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.62679779023354 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0695e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850754.0744509636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14637.37672773735, dt = 39.62679779023354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.6%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 269.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2429976256435283e-23,1.23376984205976e-23,-1.7113748218938649e-22)
    sum a = (-1.7365979301251644e-26,-6.642684516857825e-26,1.4674803678573152e-26)
    sum e = 2.3984747420788633e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.626973750277436 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0277e+04 | 1536 |      1 | 5.073e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811952.058537213 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14677.003525527583, dt = 39.626973750277436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.7%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 271.61 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.094863045197121e-23,8.204375769623308e-24,-1.7092711175260586e-22)
    sum a = (-5.498150419531643e-26,1.3374092986048216e-25,2.689652215954871e-26)
    sum e = 2.3984710453586646e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 39.627163229150945 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0354e+04 | 1536 |      1 | 5.060e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2819143.576781223 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14716.63049927786, dt = 21.256971828512178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.8%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 258.61 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9784715891320865e-23,1.5013325031407253e-23,-1.7011321828005588e-22)
    sum a = (3.681148457312546e-26,2.5399922778758526e-26,1.0462858017681286e-25)
    sum e = 2.398461795993989e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62727500995021 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9742e+04 | 1536 |      1 | 5.164e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1481787.1808319981 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 394                                                     [SPH][rank=0]
Info: time since start : 47.230714565 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009062510000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009212280000000001 s
rho_t_ampl=-0.000150269, rho_t_phi=3.14159 rad
eps_t_ampl=3.32805e-09, eps_t_phi=3.32849e-07 rad
vx_t_ampl=9.92421e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15115.78s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 14737.887471106373, dt = 39.62727500995021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.75 us    (2.3%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 354.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (76.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.158349293959867e-23,1.4868610689948554e-23,-1.6514089867576643e-22)
    sum a = (5.630219693131715e-26,-3.230137292889192e-26,-1.6661049748404338e-25)
    sum e = 2.398467061705054e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.62748055122426 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8910e+04 | 1536 |      1 | 5.313e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2685058.0109724156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14777.514746116323, dt = 39.62748055122426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.2%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 338.50 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4651994963131396e-23,1.2445149206619997e-23,-1.7711748568640186e-22)
    sum a = (-4.3996182220073195e-26,-4.617259786219787e-26,3.5395048738899607e-26)
    sum e = 2.398464057681943e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.627704080456134 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9520e+04 | 1536 |      1 | 5.203e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2741687.23045669 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 14817.142226667547, dt = 39.627704080456134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 299.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.031376796434375e-23,1.0340927250557886e-23,-1.7171237574196795e-22)
    sum a = (-6.197084264781907e-26,2.802536152674286e-26,-5.883179266598896e-26)
    sum e = 2.398461927620461e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.6279409201396 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0112e+04 | 1536 |      1 | 5.101e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2796704.6165833967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14856.769930748003, dt = 39.6279409201396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.0%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 494.09 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.798593884304306e-23,1.2921438151754734e-23,-1.7591075523977598e-22)
    sum a = (1.416176560459266e-25,4.621288880401452e-26,-4.114929864051461e-26)
    sum e = 2.3984602462516556e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.62819101131674 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0056e+04 | 1536 |      1 | 5.111e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791501.2562389295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14896.397871668143, dt = 39.62819101131674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.6%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 297.03 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.708563449903666e-23,1.5112108973166995e-23,-1.7719106709200348e-22)
    sum a = (7.679715242128446e-26,2.2154051773757955e-26,-7.190562094408743e-26)
    sum e = 2.398459016059928e-16
    sum de = -2.0800043399382147e-32
Info: cfl dt = 39.62845428518363 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2076e+04 | 1536 |      1 | 6.958e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2050384.956131191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14936.02606267946, dt = 39.62845428518363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 288.29 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9307653205732776e-23,1.5513599564911217e-23,-1.8064998441195929e-22)
    sum a = (2.872748881621146e-26,6.512728333976335e-26,-3.1155613796485164e-26)
    sum e = 2.3984582384426804e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 39.62866522671981 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1752e+04 | 1536 |      1 | 7.061e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2020341.6498112218 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14975.654516964645, dt = 39.62866522671981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 295.68 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.047156776638312e-23,1.8946264043199978e-23,-1.8107720990334652e-22)
    sum a = (4.7613152760202336e-26,-4.114422241750194e-26,9.225728308432997e-27)
    sum e = 2.398457914320563e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.62837716451589 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1753e+04 | 1536 |      1 | 7.061e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2020407.1681607065 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15015.283182191364, dt = 39.62837716451589 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.60 us   (3.5%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 310.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.142386149782431e-23,1.520957545126833e-23,-1.7991147991848339e-22)
    sum a = (3.242801173908881e-27,9.10604997930888e-26,-3.697215967333378e-26)
    sum e = 2.398458044113598e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.62809597902215 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1485e+04 | 1536 |      1 | 7.149e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1995492.2055815058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15054.91155935588, dt = 39.62809597902215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.6%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 293.52 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.152967191242889e-23,2.1437277829797814e-23,-1.822919898751434e-22)
    sum a = (-9.101962468464684e-26,-1.9955928152963345e-26,2.9087037224962874e-26)
    sum e = 2.3984586277020586e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.6278283310911 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1535e+04 | 1536 |      1 | 7.133e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2000119.9490942257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15094.539655334902, dt = 21.242366312659215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 310.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.750887615745497e-23,1.8814401430565932e-23,-1.8036521227796826e-22)
    sum a = (5.884509553669753e-26,-1.8935004344231117e-26,7.381450611626974e-26)
    sum e = 2.3984587216361215e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.62769524375081 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2152e+04 | 1536 |      1 | 6.934e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1102865.377246108 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 48.327398649 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009688470000000001 s
sph::RenderFieldGetter compute custom field took :  0.000828185 s
rho_t_ampl=6.83601e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-2.30781e-09, eps_t_phi=6.28318 rad
vx_t_ampl=9.9725e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15493.68s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 15115.782021647561, dt = 39.62769524375081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.78 us    (2.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 365.70 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.078899901019685e-23,1.807496849413004e-23,-1.7696505488581405e-22)
    sum a = (6.7810629476810065e-28,-2.0087178804938966e-26,3.6215001924500464e-26)
    sum e = 2.398460019722226e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.627443756342615 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5519e+04 | 1536 |      1 | 6.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2370158.661361354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15155.409716891312, dt = 39.627443756342615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 321.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0577378180987695e-23,1.7256384407706742e-23,-1.7627493778062826e-22)
    sum a = (-6.051291411406765e-27,1.5611945298136985e-26,3.477481275006057e-26)
    sum e = 2.398461938834538e-16
    sum de = 0
Info: cfl dt = 39.62721076309213 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5420e+04 | 1536 |      1 | 6.042e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2360953.6989979334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15195.037160647655, dt = 39.62721076309213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 296.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9413463620337355e-23,1.858286365075616e-23,-1.7492544445428777e-22)
    sum a = (3.03016641433517e-26,7.227316662261265e-26,-7.920143994676493e-26)
    sum e = 2.398464118568967e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.62699155089365 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0261e+04 | 1536 |      1 | 5.076e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2810485.715405066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15234.664371410747, dt = 39.62699155089365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.4%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 309.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.290520730228839e-23,2.2569185773335104e-23,-1.8032223973967977e-22)
    sum a = (-3.661773991747743e-27,5.551998835984423e-26,-5.746372960828857e-26)
    sum e = 2.398466745365856e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.62678618041175 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9983e+04 | 1536 |      1 | 5.123e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2784696.281096035 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15274.29136296164, dt = 39.62678618041175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.8%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 279.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0683188595592274e-23,2.4436948835333985e-23,-1.8216864263403673e-22)
    sum a = (-4.9236975155352375e-26,3.3796105536735655e-26,-4.9965876697560636e-26)
    sum e = 2.398469816229148e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.62659470738692 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0369e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820519.172575909 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15313.918149142051, dt = 39.62659470738692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 292.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.78263074012687e-23,2.5345856680220393e-23,-1.8400006227207759e-22)
    sum a = (8.210898506363458e-26,1.2559057837221147e-25,1.2307864586456203e-26)
    sum e = 2.3984733278217424e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.626417183912594 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0585e+04 | 1536 |      1 | 5.022e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840571.4802010166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15353.544743849438, dt = 39.626417183912594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 295.51 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.396331144833415e-23,3.214154089124764e-23,-1.8227849754194428e-22)
    sum a = (3.639170448588807e-26,-9.343918647970899e-26,-3.4830255025555265e-26)
    sum e = 2.398477276302195e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.62625365809068 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0290e+04 | 1536 |      1 | 5.071e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813209.1005348437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15393.17116103335, dt = 39.62625365809068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 308.06 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.470398435056619e-23,2.409858025239989e-23,-1.8459264745906645e-22)
    sum a = (4.025368128847211e-26,8.997245673697206e-26,2.287742942055359e-26)
    sum e = 2.3984816573501605e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.62610417401896 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0493e+04 | 1536 |      1 | 5.037e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832042.523348999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15432.79741469144, dt = 39.62610417401896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.4%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 301.35 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.449236352135703e-23,3.1298854969661727e-23,-1.8254273438667448e-22)
    sum a = (3.3227208443636934e-26,1.9524826388333674e-26,1.636587770821036e-26)
    sum e = 2.3984864661712353e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.62596877177908 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9793e+04 | 1536 |      1 | 5.155e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2767030.0137767345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15472.423518865458, dt = 21.25305332329117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.4%)
   patch tree reduce : 1.10 us    (0.3%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 298.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.597370932582112e-23,3.0316879556975255e-23,-1.8232392322830166e-22)
    sum a = (2.9468562124065174e-26,3.630075719222619e-26,-6.265409297378552e-26)
    sum e = 2.3984725729963125e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.62590665446625 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0406e+04 | 1536 |      1 | 5.052e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1514576.3856204448 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 414                                                     [SPH][rank=0]
Info: time since start : 49.168084055 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009732160000000001 s
sph::RenderFieldGetter compute custom field took :  0.000854143 s
rho_t_ampl=0.000285311, rho_t_phi=3.14159 rad
eps_t_ampl=-1.49736e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.77146e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15871.57s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 15493.67657218875, dt = 39.62590665446625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (2.3%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 358.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.756086554488977e-23,3.1933575377875044e-23,-1.8564635629325314e-22)
    sum a = (1.4240232190130115e-26,1.264712735146746e-25,-1.6405818478376787e-26)
    sum e = 2.398493103829847e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.62578829117376 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6544e+04 | 1536 |      1 | 5.787e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2465216.5549627715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15533.302478843216, dt = 39.62578829117376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.5%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 291.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.69260030572623e-23,3.8731390780114414e-23,-1.8538013487898132e-22)
    sum a = (9.945558989932143e-27,1.317442037934667e-26,2.384099650554627e-26)
    sum e = 2.398499749580489e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.625688751862604 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3673e+04 | 1536 |      1 | 6.488e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2198571.926837506 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15572.92826713439, dt = 39.625688751862604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 294.61 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.798410720330807e-23,3.7008497055298756e-23,-1.8363801308694456e-22)
    sum a = (-4.744806616820224e-26,2.156796275936185e-26,4.247061628153907e-27)
    sum e = 2.398506026671822e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.62560340975751 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7711e+04 | 1536 |      1 | 5.543e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2573577.221827304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15612.553955886253, dt = 39.62560340975751 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.8%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 274.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.597370932582112e-23,3.802997054511667e-23,-1.8385793228965013e-22)
    sum a = (1.7152860180038812e-26,-6.799606670755146e-26,2.2439371297363315e-26)
    sum e = 2.3985127031969565e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 39.62553228093713 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9568e+04 | 1536 |      1 | 5.195e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2746080.8503024112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15652.17955929601, dt = 39.62553228093713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 307.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.69260030572623e-23,3.356044925135154e-23,-1.826083196339092e-22)
    sum a = (2.177689929483843e-26,3.583557943529485e-26,6.806086748918048e-26)
    sum e = 2.398519772577345e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.62547538277437 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4338e+04 | 1536 |      1 | 6.311e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2260352.369248828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15691.805091576947, dt = 39.62547538277437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 289.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.682019264265772e-23,3.7038075406061023e-23,-1.7900748736966436e-22)
    sum a = (8.395601744747913e-27,-2.1020231654980434e-26,-3.306178766843347e-26)
    sum e = 2.3985272271313784e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.62543272889773 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3789e+04 | 1536 |      1 | 6.457e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2209345.2460190286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15731.430566959722, dt = 39.62543272889773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 295.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.766667595949435e-23,3.5078774452423636e-23,-1.823210916541075e-22)
    sum a = (7.065221775964782e-26,-3.814984696993091e-26,2.87559413306469e-26)
    sum e = 2.3985350586952864e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.62540432887194 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5974e+04 | 1536 |      1 | 5.914e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2412222.854626526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15771.055999688619, dt = 39.62540432887194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.25 us   (7.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 302.94 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.232233420209572e-23,3.322806092012178e-23,-1.7995684872106963e-22)
    sum a = (-2.9978756383938317e-26,-2.134321974715916e-25,-2.9664833022031673e-26)
    sum e = 2.398543258693149e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.62539018819587 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0511e+04 | 1536 |      1 | 5.034e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833599.3476399602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15810.68140401749, dt = 39.62539018819587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.3%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 327.85 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.96770738369813e-23,2.1296838787073747e-23,-1.8228980270690236e-22)
    sum a = (-4.2920899381226634e-26,3.482788648819894e-26,3.977604413530491e-26)
    sum e = 2.398551818145097e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 39.62539030830267 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1317e+04 | 1536 |      1 | 4.905e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2908433.8159119007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15850.306794205686, dt = 21.26432852425205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.4%)
   patch tree reduce : 1.13 us    (0.4%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 274.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.682019264265772e-23,2.695655933310547e-23,-1.800681809108287e-22)
    sum a = (-3.9665989166339755e-26,2.7425453148165514e-26,-2.119065200313122e-26)
    sum e = 2.398502030835452e-16
    sum de = 2.1570415377137042e-32
Info: cfl dt = 39.625400724299936 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0665e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1528286.4234095057 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 424                                                     [SPH][rank=0]
Info: time since start : 50.046999132 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001084223 s
sph::RenderFieldGetter compute custom field took :  0.0010695750000000001 s
rho_t_ampl=0.000495159, rho_t_phi=3.14159 rad
eps_t_ampl=-3.43537e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.32612e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16249.47s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 15871.571122729938, dt = 39.625400724299936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.61 us    (2.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 343.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.671438222805315e-23,2.796472902323555e-23,-1.8155607691592546e-22)
    sum a = (-1.6261634764057882e-26,1.3393051124494498e-25,5.2815694374608285e-27)
    sum e = 2.3985630538660273e-16
    sum de = -3.004450713244088e-32
Info: cfl dt = 39.62541832088978 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0461e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2829019.080375214 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15911.196523454239, dt = 39.62541832088978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 310.48 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.671438222805315e-23,3.5381300274062846e-23,-1.808223063262485e-22)
    sum a = (3.176120721590018e-26,2.5828899745686636e-26,1.10784698487145e-25)
    sum e = 2.39857376076845e-16
    sum de = 1.3096323621833204e-32
Info: cfl dt = 39.6254545823555 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0881e+04 | 1536 |      1 | 4.974e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2867983.2099641752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15950.821941775128, dt = 39.6254545823555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 287.32 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.861896969093553e-23,3.4263225698938827e-23,-1.7434210947655298e-22)
    sum a = (-4.5723738732934785e-26,5.854878903833367e-26,-3.005549702355849e-26)
    sum e = 2.3985835169444815e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.625505089199876 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0513e+04 | 1536 |      1 | 5.034e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833823.431096037 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15990.447396357484, dt = 39.625505089199876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.4%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 308.77 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.523303642358907e-23,3.723185881064018e-23,-1.7832350211210835e-22)
    sum a = (2.811880768971724e-26,-3.103309751936433e-26,9.781074186578754e-26)
    sum e = 2.398593583894324e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.625569812629365 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0855e+04 | 1536 |      1 | 4.978e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2865531.861970336 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16030.072901446683, dt = 39.625569812629365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 298.49 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.734924471568061e-23,3.4227705845403353e-23,-1.7191431358195331e-22)
    sum a = (-3.2600767390374973e-26,8.046723561172414e-26,3.904013392751808e-26)
    sum e = 2.398603953648573e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.62564873132781 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0745e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2855360.664405864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16069.698471259313, dt = 39.62564873132781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 273.22 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.565627808200738e-23,3.9625160709239524e-23,-1.7153173236241297e-22)
    sum a = (-2.800256089632842e-26,-1.325797768927627e-26,1.2742954890358955e-25)
    sum e = 2.398614614939118e-16
    sum de = 2.3881531310401725e-32
Info: cfl dt = 39.62574182024199 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0852e+04 | 1536 |      1 | 4.979e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2865330.0346746477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16109.32411999064, dt = 39.62574182024199 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 324.54 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.417493227754331e-23,3.7242204775251784e-23,-1.6473099800258695e-22)
    sum a = (3.138663421498066e-26,2.259163908870441e-27,-1.3930512608437287e-26)
    sum e = 2.3986255560882806e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.62584905029481 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0390e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2822431.273608531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16148.949861810883, dt = 39.62584905029481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 310.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.618533015503026e-23,3.7639510482434006e-23,-1.6808375504298795e-22)
    sum a = (-9.612318182217534e-26,-4.340333587203497e-26,9.451303001497262e-26)
    sum e = 2.3986367651107583e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.62597038839545 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1022e+04 | 1536 |      1 | 4.951e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2881124.319699858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16188.575710861178, dt = 39.62597038839545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 313.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.957217924224422e-23,3.501500662809468e-23,-1.6219000078905723e-22)
    sum a = (7.558624832348429e-26,-6.244990500481321e-26,4.159005246957906e-26)
    sum e = 2.398648229727911e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.62610579745142 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0629e+04 | 1536 |      1 | 5.015e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2844586.968274641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16228.201681249573, dt = 21.26399202155335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 277.17 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.565627808200738e-23,3.330988574635713e-23,-1.623541924157059e-22)
    sum a = (1.495708741602782e-26,9.573739692146485e-26,-4.1915462575211117e-26)
    sum e = 2.3985441806321625e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 39.62618838780903 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0418e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1515942.1441178126 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 434                                                     [SPH][rank=0]
Info: time since start : 50.866574501 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008857730000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008160120000000001 s
rho_t_ampl=0.000692659, rho_t_phi=3.14159 rad
eps_t_ampl=-5.99647e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.64764e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16627.36s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 16249.465673271126, dt = 39.62618838780903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.21 us    (2.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 362.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.475688955786847e-23,3.878644009493921e-23,-1.6490297273491044e-22)
    sum a = (-2.479931592294768e-26,-1.788822899436929e-26,7.203351245894859e-26)
    sum e = 2.398662955578809e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.626341253576 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4119e+04 | 1536 |      1 | 6.368e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2240027.492487968 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16289.091861658935, dt = 39.626341253576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 376.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.311682813149754e-23,3.5826047589258083e-23,-1.5979086641286769e-22)
    sum a = (-4.184884561997421e-27,4.90120213386212e-26,-1.3384482035828117e-25)
    sum e = 2.3986766572671264e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.626512144217074 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4155e+04 | 1536 |      1 | 6.359e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2243388.843827563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16328.71820291251, dt = 39.626512144217074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 330.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.290520730228839e-23,3.9094687842075226e-23,-1.6917377234870123e-22)
    sum a = (-3.1360801594227585e-26,-1.7413633895943234e-25,-1.7627753079044918e-26)
    sum e = 2.3986889301465206e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.62669696063345 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4455e+04 | 1536 |      1 | 6.281e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2271221.6222233996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16368.344715056728, dt = 39.62669696063345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 297.77 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1952913570847193e-23,2.7772650571626094e-23,-1.6756966346410927e-22)
    sum a = (-7.362296914625092e-26,-5.409487012403965e-26,-3.583383270577096e-26)
    sum e = 2.398701392868981e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.62689563012637 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4150e+04 | 1536 |      1 | 6.360e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2242966.871379486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16407.971412017363, dt = 39.62689563012637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.3%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 317.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.824954905968701e-23,2.8007327014857365e-23,-1.6935037041287447e-22)
    sum a = (3.6320664778817126e-26,6.957908553693328e-27,-4.269094721767489e-26)
    sum e = 2.3987140383996873e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.62710809345172 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4225e+04 | 1536 |      1 | 6.341e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2249910.7888534567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16447.598307647488, dt = 39.62710809345172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 295.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.121224066861516e-23,2.9492754373400425e-23,-1.7117795227342142e-22)
    sum a = (-2.5212637854996808e-26,9.882473724493232e-26,-2.435349318085541e-26)
    sum e = 2.3987268529954967e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62733428774012 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3874e+04 | 1536 |      1 | 6.434e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217278.141049999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16487.22541574094, dt = 39.62733428774012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 328.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9625084449546507e-23,3.5228797397447094e-23,-1.7177968615213447e-22)
    sum a = (-4.647288473477383e-26,-1.4027058672834764e-25,7.940461226137642e-28)
    sum e = 2.398739822615044e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.627574146252215 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9212e+04 | 1536 |      1 | 5.258e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2713125.020128327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16526.85275002868, dt = 39.627574146252215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 308.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.724435012094353e-23,2.4933219312621223e-23,-1.7124995505728626e-22)
    sum a = (-2.523847047574988e-26,1.4750579389713526e-26,6.600340073359314e-26)
    sum e = 2.398752933047726e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 39.62782759839971 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0827e+04 | 1536 |      1 | 4.983e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863107.379893031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16566.480324174932, dt = 39.62782759839971 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 274.71 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.650367721871149e-23,2.858867722859484e-23,-1.673423394046737e-22)
    sum a = (-9.617484706368147e-26,-1.1572979410018617e-26,4.2586410156572703e-26)
    sum e = 2.398766169926987e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.628094569769125 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0863e+04 | 1536 |      1 | 4.977e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2866479.630162283 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16606.108151773333, dt = 21.252072038983897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.8%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 273.40 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.211254501262156e-23,2.782165505319467e-23,-1.66901272180875e-22)
    sum a = (2.275853888345511e-26,-5.003039799166333e-26,-1.2234008953865718e-27)
    sum e = 2.3985947974411054e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.628246988768815 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0795e+04 | 1536 |      1 | 4.988e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1533889.3920225604 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 444                                                     [SPH][rank=0]
Info: time since start : 51.767922503 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001075697 s
sph::RenderFieldGetter compute custom field took :  0.0009201060000000001 s
rho_t_ampl=0.000872872, rho_t_phi=3.14159 rad
eps_t_ampl=-9.11667e-08, eps_t_phi=6.28319 rad
vx_t_ampl=7.75299e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17005.25s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 16627.360223812317, dt = 39.628246988768815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 354.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.523395224345657e-23,2.5430406847945192e-23,-1.6741527804396608e-22)
    sum a = (2.0459435636431836e-26,2.10922071323405e-26,9.789777164147001e-27)
    sum e = 2.3987829293241877e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.6285309433766 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2541e+04 | 1536 |      1 | 6.814e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2093568.1385120878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16666.988470801087, dt = 39.6285309433766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 311.12 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.650367721871149e-23,2.767528742400777e-23,-1.6680910708655215e-22)
    sum a = (3.487403801664518e-27,-1.3734443224591937e-26,8.185044150933254e-26)
    sum e = 2.398798263591687e-16
    sum de = -2.0800043399382147e-32
Info: cfl dt = 39.6288318211077 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3180e+04 | 1536 |      1 | 6.626e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2152919.9904533825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16706.617001744464, dt = 39.6288318211077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 348.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6344961596804626e-23,2.6441146883840207e-23,-1.6213764057209924e-22)
    sum a = (-2.2551877917430546e-26,-1.0154487878423212e-25,7.738473708047354e-26)
    sum e = 2.3988118417904823e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62914594779861 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0504e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833208.333160148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16746.245833565572, dt = 39.62914594779861 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 314.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.401713247550394e-23,2.0677333792483987e-23,-1.5915943485708747e-22)
    sum a = (-2.5160972613490668e-26,3.589874668903205e-26,4.143355276849527e-26)
    sum e = 2.3988254685586785e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.62947320904826 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8865e+04 | 1536 |      1 | 5.321e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2680971.8571205027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16785.87497951337, dt = 39.62947320904826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 286.86 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.391132206089936e-23,2.482318526452352e-23,-1.5822980235273895e-22)
    sum a = (-2.963001600377186e-26,5.598254032327053e-26,-5.242961086802936e-26)
    sum e = 2.3988391400318693e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 39.629813509515586 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0744e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2855562.259644165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16825.50445272242, dt = 39.629813509515586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 318.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.216545021992384e-23,2.743961642487751e-23,-1.6216745191814726e-22)
    sum a = (2.0769427085468683e-26,2.4594496540238522e-26,1.137316426273618e-25)
    sum e = 2.398852841345653e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 39.6301667504487 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0650e+04 | 1536 |      1 | 5.011e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2846877.896728176 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16865.134266231937, dt = 39.6301667504487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.7%)
   patch tree reduce : 1.30 us    (0.5%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 268.83 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.375260643899249e-23,2.7792296279708803e-23,-1.5436777821175493e-22)
    sum a = (-5.737425069256958e-26,6.431742973313577e-26,-6.576463702158682e-29)
    sum e = 2.3988665574814203e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.63053282948804 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0789e+04 | 1536 |      1 | 4.989e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859736.005343878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16904.764432982385, dt = 39.63053282948804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 295.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9890526305925444e-23,3.112877299462351e-23,-1.5662528961219023e-22)
    sum a = (4.4406275074528193e-26,3.609614297735001e-26,7.586700205274973e-26)
    sum e = 2.3988802734024373e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.63091164069823 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0433e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826741.1767990994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16944.394965811873, dt = 39.63091164069823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 291.80 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4334563719317665e-23,3.2000236455728345e-23,-1.5211398315582209e-22)
    sum a = (-3.6398162641076336e-26,-5.443681493563642e-26,2.782330475079319e-26)
    sum e = 2.398893974071218e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.63130307460261 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0752e+04 | 1536 |      1 | 4.995e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856389.9424847844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16984.025877452572, dt = 21.22889690093507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 282.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1107346073878074e-23,2.905115863793706e-23,-1.5247533284916128e-22)
    sum a = (2.8415882828377553e-26,1.1319476952483758e-25,-2.1823050632404505e-26)
    sum e = 2.398648785816733e-16
    sum de = -1.9259299443872359e-32
Info: cfl dt = 39.63152107489144 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0348e+04 | 1536 |      1 | 5.061e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1509985.9667493852 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 454                                                     [SPH][rank=0]
Info: time since start : 52.627402758 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010081810000000001 s
sph::RenderFieldGetter compute custom field took :  0.001094101 s
rho_t_ampl=0.0010313, rho_t_phi=3.14159 rad
eps_t_ampl=-1.2718e-07, eps_t_phi=6.28319 rad
vx_t_ampl=6.66457e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17383.15s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 17005.254774353507, dt = 39.63152107489144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.00 us    (2.1%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 398.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.332936478057419e-23,3.5316421647041507e-23,-1.5386718222018208e-22)
    sum a = (7.667121839511325e-26,8.341163091382357e-26,2.960321055632685e-26)
    sum e = 2.398911108346221e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 39.6319285821404 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2545e+04 | 1536 |      1 | 6.813e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2094078.8705032035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17044.886295428398, dt = 39.6319285821404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 308.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7720496986664125e-23,3.803214048525993e-23,-1.516748994165607e-22)
    sum a = (7.039389155211711e-26,-5.435212417690043e-27,-2.869620377375262e-26)
    sum e = 2.398926551269928e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 39.632351481019136 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2455e+04 | 1536 |      1 | 6.840e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2085792.1468327125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17084.51822401054, dt = 39.632351481019136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 305.68 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.973089486415108e-23,3.605603541182267e-23,-1.5396745656324921e-22)
    sum a = (-4.7557854806402794e-26,7.801086934839516e-26,4.4594489170955265e-26)
    sum e = 2.3989400940302774e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.63278661549555 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3038e+04 | 1536 |      1 | 6.667e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2139928.7928353157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17124.150575491556, dt = 39.63278661549555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 300.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.549847827996801e-23,4.080104868960892e-23,-1.5074771143817227e-22)
    sum a = (-3.719897388442152e-26,5.948950148747295e-26,-4.354756976493536e-26)
    sum e = 2.3989535376748605e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.633233832833405 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6129e+04 | 1536 |      1 | 5.879e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2427067.129009668 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17163.783362107053, dt = 39.633233832833405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 299.06 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4387468926619955e-23,4.2792104392307015e-23,-1.542203001603464e-22)
    sum a = (-1.7307855904557235e-26,2.7644517997702306e-26,-2.3481903887788295e-27)
    sum e = 2.3989668834378467e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.63369300443397 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0125e+04 | 1536 |      1 | 5.099e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2798350.1028800313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17203.416595939885, dt = 39.63369300443397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 279.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.41758480974108e-23,4.3256161591515174e-23,-1.5349693529903882e-22)
    sum a = (1.8134499768655492e-26,3.527381926589234e-26,1.0307788763014916e-26)
    sum e = 2.39898011680021e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.63416399859504 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0992e+04 | 1536 |      1 | 4.956e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2878924.212522853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17243.05028894432, dt = 39.63416399859504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 276.31 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4440374133922244e-23,4.4805524686422084e-23,-1.5283759311255869e-22)
    sum a = (-5.706425924353273e-26,1.1944173231690215e-25,7.206440508917989e-28)
    sum e = 2.3989932232468073e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.63464668036752 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8488e+04 | 1536 |      1 | 5.392e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2646368.4935427615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17282.684452942915, dt = 39.63464668036752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.8%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 280.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.168930335420325e-23,5.1207616629500355e-23,-1.5299901987311854e-22)
    sum a = (4.122886272190052e-26,-2.9205490055422e-26,9.487550497462066e-26)
    sum e = 2.3990061884003644e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.6351409115966 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0788e+04 | 1536 |      1 | 4.989e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859993.238495329 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17322.31909962328, dt = 39.6351409115966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 308.86 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.518104703615428e-23,4.7103949827150593e-23,-1.4737271854141332e-22)
    sum a = (-7.344214080097943e-26,-4.188967263912582e-26,3.7613136572849895e-27)
    sum e = 2.3990189980356014e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.635646550964736 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0423e+04 | 1536 |      1 | 5.049e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826113.9255770016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17361.954240534877, dt = 21.195084359820612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.8%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 278.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.200673459801698e-23,4.59651058249411e-23,-1.4909865908709935e-22)
    sum a = (-1.609372272916292e-26,5.795941063764326e-26,7.404796535212444e-26)
    sum e = 2.398700711976947e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.63592413382514 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0615e+04 | 1536 |      1 | 5.017e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1520835.4483274422 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 464                                                     [SPH][rank=0]
Info: time since start : 53.511585557000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010563410000000001 s
sph::RenderFieldGetter compute custom field took :  0.000993102 s
rho_t_ampl=0.00116397, rho_t_phi=3.14159 rad
eps_t_ampl=-1.67106e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.40958e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17761.04s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 17383.149324894697, dt = 39.63592413382514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.83 us    (2.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 353.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.158349293959867e-23,4.93204661856263e-23,-1.4541883379411385e-22)
    sum a = (8.602262710772477e-27,-4.921612490041838e-27,5.0093614037409194e-26)
    sum e = 2.3990348132586384e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.63644453034768 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9148e+04 | 1536 |      1 | 5.270e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2707774.7657005754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17422.785249028522, dt = 39.63644453034768 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 293.05 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.05 us   (94.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.232416584183071e-23,4.7879115736243167e-23,-1.4390802746569214e-22)
    sum a = (3.203244973380742e-26,1.8997445528519048e-26,1.30106610022203e-26)
    sum e = 2.399048829273856e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.636966146616324 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7292e+04 | 1536 |      1 | 5.628e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2535331.6848204583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17462.42169355887, dt = 39.636966146616324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 280.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.496942620694513e-23,4.910637188298004e-23,-1.441272425415007e-22)
    sum a = (5.179440460990635e-26,-2.2107356284486537e-26,3.9430211720258115e-26)
    sum e = 2.3990609985906334e-16
    sum de = -1.925929944387236e-33
Info: cfl dt = 39.637495300423126 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2630e+04 | 1536 |      1 | 6.788e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2102268.3710936005 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17502.058659705486, dt = 39.637495300423126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 313.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.581590952378174e-23,4.741523290722509e-23,-1.4204073229103487e-22)
    sum a = (4.4432107695281264e-27,6.68085842621078e-26,-1.2813881634278683e-26)
    sum e = 2.3990729291648186e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.638035198922815 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2946e+04 | 1536 |      1 | 6.694e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2131706.843306722 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17541.69615500591, dt = 39.638035198922815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 318.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5763004316479453e-23,5.1825797702276525e-23,-1.4358406188469463e-22)
    sum a = (1.1108026923820316e-27,-3.3786775426060226e-26,2.978100285379264e-26)
    sum e = 2.39908462884679e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.63858568854947 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3140e+04 | 1536 |      1 | 6.638e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2149779.8283685804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17581.334190204834, dt = 39.63858568854947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 320.44 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5710099109177164e-23,4.8493189422319594e-23,-1.4155939628586521e-22)
    sum a = (-5.014111688170984e-26,-7.401336273534405e-26,7.057579460185253e-26)
    sum e = 2.3990960848979976e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.63914661300402 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2090e+04 | 1536 |      1 | 6.953e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2052246.7251281699 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17620.972775893384, dt = 39.63914661300402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 324.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.332936478057419e-23,4.4762274421126253e-23,-1.379533080921394e-22)
    sum a = (8.103693130238216e-26,3.9678069826752965e-26,6.267017220418229e-26)
    sum e = 2.399107284742042e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.6397178131685 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2574e+04 | 1536 |      1 | 6.804e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2097224.641879756 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17660.61192250639, dt = 39.6397178131685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 296.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.877860113270989e-23,4.85883567971739e-23,-1.356257662133072e-22)
    sum a = (-2.4540989715416974e-26,-1.1188854772348477e-26,4.374771411118203e-27)
    sum e = 2.3991182160824284e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.64029912715038 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1730e+04 | 1536 |      1 | 7.069e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2018847.8655990765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17700.25164031956, dt = 39.64029912715038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 295.96 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5842362127432885e-23,4.713648601298908e-23,-1.36607755584581e-22)
    sum a = (-9.635567540895296e-27,1.243008697236481e-25,6.298504631425238e-26)
    sum e = 2.399128866916534e-16
    sum de = -2.6963019221421302e-33
Info: cfl dt = 39.64089039033344 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2874e+04 | 1536 |      1 | 6.715e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2125112.4744301825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17739.89193944671, dt = 21.1519359891754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 318.56 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.55513834872703e-23,5.245108274575978e-23,-1.3411383550211923e-22)
    sum a = (-4.8668657498784823e-26,2.833800340519169e-26,1.3224611301810562e-26)
    sum e = 2.398745375116018e-16
    sum de = -6.548161810916602e-33
Info: cfl dt = 39.641211755100514 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3116e+04 | 1536 |      1 | 6.645e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1145971.029316948 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 474                                                     [SPH][rank=0]
Info: time since start : 54.484095696000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001079604 s
sph::RenderFieldGetter compute custom field took :  0.0008853620000000001 s
rho_t_ampl=0.00126758, rho_t_phi=3.14159 rad
eps_t_ampl=-2.09946e-07, eps_t_phi=6.28319 rad
vx_t_ampl=4.01943e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18138.94s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 17761.043875435884, dt = 39.641211755100514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.98 us    (2.2%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.52 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.335581738422533e-23,5.2559960784078786e-23,-1.3411586065321592e-22)
    sum a = (-1.0746370233277329e-26,-2.203991901710655e-25,-3.3457215464405596e-26)
    sum e = 2.399141803308399e-16
    sum de = 6.548161810916602e-33
Info: cfl dt = 39.64181618778097 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0534e+04 | 1536 |      1 | 5.030e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836899.2674780395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17800.685087190985, dt = 39.64181618778097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 275.20 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.367324862803906e-23,3.889245717050981e-23,-1.3636742752879015e-22)
    sum a = (-3.110247538669688e-26,9.442214537041401e-26,5.552089062067664e-26)
    sum e = 2.399152996060931e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.6424318696432 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0357e+04 | 1536 |      1 | 5.060e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820468.151202679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17840.326903378766, dt = 39.6424318696432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 292.02 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 5.06 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.221835542722613e-23,4.887590615693152e-23,-1.3240281754193467e-22)
    sum a = (2.5574294545539797e-26,1.3194348463012176e-26,6.725274966711867e-26)
    sum e = 2.3991625895852226e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.64305693203989 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0664e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849084.1208982444 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17879.96933524841, dt = 39.64305693203989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 267.83 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.409649028645737e-23,4.778854010972771e-23,-1.2950417324656912e-22)
    sum a = (-5.303437040605374e-26,1.0413849030550006e-25,6.13903721936532e-26)
    sum e = 2.3991718268906395e-16
    sum de = 5.7777898331617076e-33
Info: cfl dt = 39.64369116463819 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0468e+04 | 1536 |      1 | 5.041e-02 | 0.0% |   1.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830855.519862475 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17919.61239218045, dt = 39.64369116463819 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 297.04 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0340220567994896e-23,5.371974858356383e-23,-1.2718663357281128e-22)
    sum a = (-1.7230358042298025e-26,-6.9918807204288e-26,-1.383491091860808e-25)
    sum e = 2.3991807230775915e-16
    sum de = -9.629649721936179e-33
Info: cfl dt = 39.64433438858887 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0365e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821384.1534932023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17959.256083345088, dt = 39.64433438858887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 279.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.057829400085519e-23,4.749743876461655e-23,-1.3663059707634863e-22)
    sum a = (9.18607993979187e-26,5.072357436633608e-26,4.1095637942423985e-26)
    sum e = 2.3991892684481134e-16
    sum de = -5.007417855406813e-33
Info: cfl dt = 39.64498642274903 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9979e+04 | 1536 |      1 | 5.124e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2785548.1449513324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17998.900417733676, dt = 39.64498642274903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 301.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6318508993153484e-23,5.189999544723453e-23,-1.3144437728836643e-22)
    sum a = (-8.204440351175191e-26,5.165801392230726e-26,-1.4188552080035715e-25)
    sum e = 2.399197453611868e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.64564708365101 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0796e+04 | 1536 |      1 | 4.988e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861465.121125644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18038.545404156426, dt = 39.64564708365101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.9%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 272.28 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9520189854809423e-23,5.396645011175565e-23,-1.4069666334928869e-22)
    sum a = (1.7953671423383997e-26,-1.4895552360105781e-25,-9.355429242276445e-27)
    sum e = 2.3992052695729763e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.64631618555533 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0399e+04 | 1536 |      1 | 5.053e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824617.7263677516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18078.191051240075, dt = 39.64631618555533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 270.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.250933406738872e-23,4.40840325050992e-23,-1.3844045103614137e-22)
    sum a = (1.2577903044670027e-25,3.569048695119086e-26,-6.662961534007628e-26)
    sum e = 2.399212707739346e-16
    sum de = -3.4666738998970245e-33
Info: cfl dt = 39.646993540506415 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0820e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863843.689271962 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18117.83736742563, dt = 21.10105855144502 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.8%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 722.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 261.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7164992309990094e-23,4.8497264518243387e-23,-1.4098176169634243e-22)
    sum a = (-1.9736122255345863e-26,-5.984984321184723e-26,-4.5901064324555893e-26)
    sum e = 2.3987783416549044e-16
    sum de = 3.4666738998970245e-33
Info: cfl dt = 39.64735849784291 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1116e+04 | 1536 |      1 | 4.936e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1538865.3561415814 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 484                                                     [SPH][rank=0]
Info: time since start : 55.453684886000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001082319 s
sph::RenderFieldGetter compute custom field took :  0.00101343 s
rho_t_ampl=0.00133953, rho_t_phi=3.14159 rad
eps_t_ampl=-2.5463e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.52886e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18516.83s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 18138.938425977074, dt = 39.64735849784291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.94 us    (2.4%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 353.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4704900170433686e-23,4.5116420277185287e-23,-1.4258292046471834e-22)
    sum a = (-3.1128308007449954e-26,-1.541718051885448e-26,4.546837244822991e-26)
    sum e = 2.399221497520649e-16
    sum de = 5.7777898331617076e-33
Info: cfl dt = 39.648047077505964 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0658e+04 | 1536 |      1 | 5.010e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2848809.749147814 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18178.585784474915, dt = 39.648047077505964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 286.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3316138478748617e-23,4.538604825629546e-23,-1.3896890988561588e-22)
    sum a = (-3.513236422417588e-26,5.883974107014008e-26,-2.54372431042852e-26)
    sum e = 2.3992287494602307e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.64874444026913 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6189e+04 | 1536 |      1 | 5.865e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2433659.4282566053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18218.23383155242, dt = 39.64874444026913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.6%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 301.41 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.175543486333111e-23,4.9191341830792076e-23,-1.4138309922846516e-22)
    sum a = (-6.530486526376223e-26,-3.896068798370856e-26,-4.7706458872166545e-26)
    sum e = 2.3992348193530075e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.649449411419496 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0316e+04 | 1536 |      1 | 5.067e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2817190.371025672 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18257.88257599269, dt = 39.649449411419496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 303.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.867370653797281e-23,4.57074383492396e-23,-1.4371610727854576e-22)
    sum a = (-5.672843517374282e-26,-2.1229592716405366e-26,1.8357622477279587e-26)
    sum e = 2.399240449084753e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.65016175755257 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9885e+04 | 1536 |      1 | 5.140e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2777171.4635562235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18297.53202540411, dt = 39.65016175755257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 298.58 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6689761264136995e-23,4.521718041443264e-23,-1.4167852235214922e-22)
    sum a = (-1.4078778310423424e-26,-2.647335930419555e-27,4.7788766811294915e-26)
    sum e = 2.399245661166152e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.65088127944728 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0308e+04 | 1536 |      1 | 5.068e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2816564.114155609 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18337.182187161663, dt = 39.65088127944728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.7%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 292.92 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (61.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6954287300648437e-23,4.5480421278061616e-23,-1.3920018081604807e-22)
    sum a = (-5.0890262883548886e-27,6.146240167617086e-26,-1.5565607654706063e-25)
    sum e = 2.399250449903e-16
    sum de = 1.925929944387236e-34
Info: cfl dt = 39.6516077760732 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0284e+04 | 1536 |      1 | 5.072e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2814379.7255204823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18376.833068441112, dt = 39.6516077760732 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 302.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6888155791520576e-23,4.918890064813091e-23,-1.4940557817671608e-22)
    sum a = (-5.021861474396905e-26,-6.348642156885169e-26,-8.120522429956675e-26)
    sum e = 2.3992548100288534e-16
    sum de = -1.3481509610710651e-33
Info: cfl dt = 39.65234104462753 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0812e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863508.1168730846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18416.484676217184, dt = 39.65234104462753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.4%)
   patch tree reduce : 1.16 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 301.26 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.401804829537143e-23,4.4194479875128956e-23,-1.5114950742928954e-22)
    sum a = (2.3301023919269592e-26,8.408406424902933e-26,5.988621844057976e-26)
    sum e = 2.399258736743253e-16
    sum de = 0
Info: cfl dt = 39.65308088052135 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1372e+04 | 1536 |      1 | 4.896e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2915553.7623957666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18456.13701726181, dt = 39.65308088052135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 281.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.62136143984164e-23,5.045425345232337e-23,-1.459775313628301e-22)
    sum a = (7.284799052365881e-26,-1.988081583484472e-26,6.2727065486755e-26)
    sum e = 2.3992622257243856e-16
    sum de = 2.8888949165808538e-34
Info: cfl dt = 39.65380345803132 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1276e+04 | 1536 |      1 | 4.911e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2906674.001743316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18495.790098142334, dt = 21.04287837593074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 305.63 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8746451198013454e-23,4.7974861115986825e-23,-1.446012491840697e-22)
    sum a = (1.1263022648338739e-26,-1.406069673725471e-25,2.9967943108589907e-26)
    sum e = 2.398796367078598e-16
    sum de = 5.7777898331617076e-34
Info: cfl dt = 39.65418816825344 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1583e+04 | 1536 |      1 | 4.863e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1557626.6178999764 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 494                                                     [SPH][rank=0]
Info: time since start : 56.278106003000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001056 s
sph::RenderFieldGetter compute custom field took :  0.0009661730000000001 s
rho_t_ampl=0.00137803, rho_t_phi=3.14159 rad
eps_t_ampl=-3.00041e-07, eps_t_phi=6.28319 rad
vx_t_ampl=9.75155e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18894.73s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 18516.832976518264, dt = 39.65418816825344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.80 us    (2.2%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.859434872701938e-23,4.112897766468118e-23,-1.4375756784297932e-22)
    sum a = (1.1751259180571772e-25,6.649637597562108e-26,2.0211401830978674e-27)
    sum e = 2.399266015522369e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.6549166557726 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1627e+04 | 1536 |      1 | 4.857e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2939413.7521683685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18556.487164686518, dt = 39.6549166557726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.4%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 317.12 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.535298895988672e-23,4.7872108637863896e-23,-1.4423152358842212e-22)
    sum a = (1.2508154968636736e-25,7.80289414613756e-26,3.2396509626978935e-26)
    sum e = 2.3992685967327473e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.655651295307024 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1493e+04 | 1536 |      1 | 4.877e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2927003.2654528287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18596.142081342292, dt = 39.655651295307024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0448421738188367e-23,5.119504905950399e-23,-1.4234455252762631e-22)
    sum a = (9.661400161648367e-26,-1.6094996701182483e-27,-7.644198969486198e-26)
    sum e = 2.3992705427418947e-16
    sum de = 4.333342374871281e-34
Info: cfl dt = 39.656391639327126 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1426e+04 | 1536 |      1 | 4.888e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2920837.408837711 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18635.7977326376, dt = 39.656391639327126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 297.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.374177089275582e-23,4.955223322994525e-23,-1.475339967969631e-22)
    sum a = (7.966780240246942e-26,-2.863189046040701e-26,-9.9833041651682e-26)
    sum e = 2.399272006630857e-16
    sum de = 2.1666711874356403e-34
Info: cfl dt = 39.65713744635703 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1407e+04 | 1536 |      1 | 4.891e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2919102.845488201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18675.454124276926, dt = 39.65713744635703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 326.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.657137283956415e-23,4.788119849129138e-23,-1.5195689181005891e-22)
    sum a = (-3.3117419805436383e-26,-6.313743522379037e-26,-1.479145629841669e-26)
    sum e = 2.3992730176711087e-16
    sum de = 1.2037062152420224e-35
Info: cfl dt = 39.65782525856474 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1426e+04 | 1536 |      1 | 4.888e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2920955.118456318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18715.111261723283, dt = 39.65782525856474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 274.69 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.302155742616022e-23,4.4693136640758256e-23,-1.508572358797572e-22)
    sum a = (6.47107149864416e-26,2.059406672901382e-26,-8.282870586474472e-26)
    sum e = 2.3992735726133133e-16
    sum de = 0
Info: cfl dt = 39.65787734672581 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0017e+04 | 1536 |      1 | 5.117e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790052.693348625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18754.769086981847, dt = 39.65787734672581 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 273.10 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (61.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.751457348850026e-23,4.717015237598552e-23,-1.554911512149145e-22)
    sum a = (7.349380604248557e-26,-9.748223246819075e-26,-6.89759750239801e-26)
    sum e = 2.399273651693775e-16
    sum de = 1.2037062152420224e-34
Info: cfl dt = 39.65731453037161 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0410e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826599.2851437507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18794.426964328573, dt = 39.65731453037161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 270.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.061614126659692e-23,4.0962860996928556e-23,-1.5795186820118142e-22)
    sum a = (1.0485460763671316e-25,-1.2350208296059143e-25,-3.521960145187907e-27)
    sum e = 2.3992732551171058e-16
    sum de = 1.925929944387236e-34
Info: cfl dt = 39.65657249138955 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0576e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841987.1542411507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18834.084278858943, dt = 39.65657249138955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 266.84 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.544704800838713e-23,3.5549257516044124e-23,-1.5679367184132748e-22)
    sum a = (4.6834541425316815e-26,4.8468908776985205e-26,-3.4296510947217634e-26)
    sum e = 2.399272398171533e-16
    sum de = -9.62964972193618e-35
Info: cfl dt = 39.65583619132055 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0353e+04 | 1536 |      1 | 5.060e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821199.0592621844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18873.740851350332, dt = 20.986675709118572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 265.36 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.519244169824487e-23,3.9976054884161266e-23,-1.5812364819691816e-22)
    sum a = (8.036528316280233e-26,-1.1563622968485848e-25,-3.1919844488188535e-26)
    sum e = 2.398797883860531e-16
    sum de = 0
Info: cfl dt = 39.65544921953129 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0561e+04 | 1536 |      1 | 5.026e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1503215.721745619 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 504                                                     [SPH][rank=0]
Info: time since start : 57.08841717200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010763580000000001 s
sph::RenderFieldGetter compute custom field took :  0.001000507 s
rho_t_ampl=0.00138212, rho_t_phi=3.14159 rad
eps_t_ampl=-3.45044e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.02845e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19272.62s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 18894.72752705945, dt = 39.65544921953129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.92 us    (2.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 342.74 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.882967470027718e-23,3.3668561998280734e-23,-1.5936450480498985e-22)
    sum a = (1.1575597359450892e-25,6.13573809728554e-26,-1.6152143647589108e-26)
    sum e = 2.3992707602155838e-16
    sum de = -4.81482486096809e-34
Info: cfl dt = 39.65472018124142 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4334e+04 | 1536 |      1 | 6.312e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2261683.0228851796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18934.382976278983, dt = 39.65472018124142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.8%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 293.72 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.398793241225031e-23,3.961111583624384e-23,-1.5969237591166592e-22)
    sum a = (-5.424850358144805e-28,-1.2470905792686594e-26,7.058768963820401e-26)
    sum e = 2.39926835521797e-16
    sum de = 1.3481509610710651e-33
Info: cfl dt = 39.65397257299476 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7944e+04 | 1536 |      1 | 5.497e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2597171.9565900215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18974.037696460226, dt = 39.65397257299476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 285.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.184527151650762e-23,3.7652736784259583e-23,-1.5517347169400473e-22)
    sum a = (1.8754482666729183e-26,-8.79137565824642e-26,-8.017110332824787e-27)
    sum e = 2.3992659378440874e-16
    sum de = 8.666684749742561e-34
Info: cfl dt = 39.65323140244041 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1194e+04 | 1536 |      1 | 4.924e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2899121.8892984954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19013.691669033222, dt = 39.65323140244041 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 280.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.278433894612325e-23,3.2670839988706476e-23,-1.570498723162878e-22)
    sum a = (-1.2495238658260202e-25,5.56182883877471e-26,-3.231487323075068e-26)
    sum e = 2.3992630435722944e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.65249690756623 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1472e+04 | 1536 |      1 | 4.881e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2924901.538978205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19053.344900435663, dt = 39.65249690756623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 277.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.508663128364029e-23,3.772194560433465e-23,-1.5881298013451559e-22)
    sum a = (1.544790721033616e-26,-1.9298402497763714e-26,2.8293828791587824e-27)
    sum e = 2.3992597072333055e-16
    sum de = -5.7777898331617076e-34
Info: cfl dt = 39.651769286849586 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0990e+04 | 1536 |      1 | 4.956e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2880040.9722723714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19092.997397343228, dt = 39.651769286849586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.9%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 271.73 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.83006226272543e-23,3.54715449201249e-23,-1.5800401134401029e-22)
    sum a = (3.508069898266974e-26,-1.0484848689490632e-25,5.860855864806102e-26)
    sum e = 2.399255932572837e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.651048736425786 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0803e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2862603.919078807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19132.64916663008, dt = 39.651048736425786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.4%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 301.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.025811529743897e-23,2.961813299822545e-23,-1.5457424902438403e-22)
    sum a = (4.391545528021985e-27,3.431686446185269e-26,-2.2079458958149552e-26)
    sum e = 2.3992517238540417e-16
    sum de = 1.3481509610710651e-33
Info: cfl dt = 39.65033545045632 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0934e+04 | 1536 |      1 | 4.965e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874739.7884766427 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19172.300215366504, dt = 39.65033545045632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.4%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 309.67 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.978196843171838e-23,3.373782409813611e-23,-1.5704938923791325e-22)
    sum a = (-1.0304632418399822e-25,9.961879076046088e-26,-7.092885423975564e-26)
    sum e = 2.3992470858149966e-16
    sum de = 4.8148248609680896e-33
Info: cfl dt = 39.64962962075576 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0596e+04 | 1536 |      1 | 5.020e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2843319.7395681934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19211.95055081696, dt = 39.64962962075576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.7%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 273.75 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.356560657369949e-23,3.898223602212891e-23,-1.608301394926804e-22)
    sum a = (-1.2244662236955418e-26,1.1786605597322401e-25,3.8945286011780855e-26)
    sum e = 2.399242023667462e-16
    sum de = -9.62964972193618e-34
Info: cfl dt = 39.64893143685588 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0507e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834974.494519082 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19251.600180437716, dt = 21.021897162925598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.4%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 281.25 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.492791566173342e-23,4.182172136818349e-23,-1.5783320121221994e-22)
    sum a = (2.0459435636431836e-26,1.924479539494657e-25,6.464873068254807e-26)
    sum e = 2.3987843352115145e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.648565467178 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1347e+04 | 1536 |      1 | 4.900e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1544480.9805804258 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 514                                                     [SPH][rank=0]
Info: time since start : 57.916919846000006 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008979550000000001 s
sph::RenderFieldGetter compute custom field took :  0.000800653 s
rho_t_ampl=0.0013517, rho_t_phi=3.14159 rad
eps_t_ampl=-3.88516e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.16568e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19650.52s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 19272.62207760064, dt = 39.648565467178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.31 us    (2.2%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 492.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 355.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.591988829865132e-23,5.023595004703316e-23,-1.5499980419608494e-22)
    sum a = (-4.414794886699749e-26,1.05165494650239e-25,-1.4413444481147827e-26)
    sum e = 2.399235205693722e-16
    sum de = 5.7777898331617076e-34
Info: cfl dt = 39.64787820532238 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9861e+04 | 1536 |      1 | 5.144e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2774908.655112893 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19312.27064306782, dt = 39.64787820532238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 287.10 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.319527012258348e-23,5.267519203256425e-23,-1.5713861760136915e-22)
    sum a = (-3.358240697899165e-27,1.796574893040112e-26,-6.998384310539292e-26)
    sum e = 2.399228102940344e-16
    sum de = -1.3481509610710651e-33
Info: cfl dt = 39.647200234027096 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9867e+04 | 1536 |      1 | 5.143e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2775390.2989990828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19351.918521273143, dt = 39.647200234027096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.7%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 276.27 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.375077479925751e-23,5.1658847528869916e-23,-1.6101490524035455e-22)
    sum a = (1.441460238021334e-26,5.754863980302933e-26,-8.544807230849396e-26)
    sum e = 2.399221622376474e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.64653052213973 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6145e+04 | 1536 |      1 | 5.875e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2429482.678755888 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19391.56572150717, dt = 39.64653052213973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.4%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 291.48 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.4941141963559e-23,5.472515256873454e-23,-1.647091815430307e-22)
    sum a = (-6.667399416367496e-26,8.220224359954173e-26,6.97926723992389e-26)
    sum e = 2.3992147166324325e-16
    sum de = -2.6963019221421302e-33
Info: cfl dt = 39.64586928462019 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3860e+04 | 1536 |      1 | 6.438e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217100.9844858632 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19431.21225202931, dt = 39.64586928462019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 296.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.068227277572477e-23,5.847283314261396e-23,-1.5886481191439793e-22)
    sum a = (-1.0658539322716889e-25,7.250893737627477e-26,2.678424260076841e-26)
    sum e = 2.3992074238935025e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.64521522953319 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4266e+04 | 1536 |      1 | 6.330e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2254839.518286028 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19470.85812131393, dt = 39.64521522953319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 298.83 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.565627808200738e-23,6.115531680060344e-23,-1.5865549814469413e-22)
    sum a = (5.225939178346162e-26,3.197589042157267e-26,-5.872678064883469e-26)
    sum e = 2.399199752160725e-16
    sum de = -5.7777898331617076e-33
Info: cfl dt = 39.64456792269388 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4011e+04 | 1536 |      1 | 6.397e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2231092.667431393 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19510.50333654346, dt = 39.64456792269388 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 329.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.078808319032935e-23,6.16195258673672e-23,-1.626787474496205e-22)
    sum a = (-4.417378148775055e-27,5.341144089667497e-26,-5.066368770121671e-26)
    sum e = 2.3991917099603497e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.64392963504371 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4135e+04 | 1536 |      1 | 6.364e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2242580.569298768 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19550.147904466154, dt = 39.64392963504371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 327.80 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.983578945888816e-23,6.416188562042404e-23,-1.645274262018864e-22)
    sum a = (-1.2709649410510687e-26,-5.623019859183545e-26,-2.3807484337780587e-26)
    sum e = 2.399183306299142e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.64330053587057 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4810e+04 | 1536 |      1 | 6.191e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2305237.1055045933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19589.791834101197, dt = 39.64330053587057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 298.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.875123270919125e-23,5.97594217737869e-23,-1.649388907402907e-22)
    sum a = (3.0740818696153896e-27,-2.761040771221818e-26,6.257033156423964e-26)
    sum e = 2.399174550518943e-16
    sum de = 5.007417855406813e-33
Info: cfl dt = 39.64268079173992 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3912e+04 | 1536 |      1 | 6.423e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2221782.1313049803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19629.435134637068, dt = 21.081493504760147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.4%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 326.80 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.92009269712607e-23,5.974464188200385e-23,-1.6190766384410819e-22)
    sum a = (3.929141616542023e-26,-9.078586658603791e-26,-1.2260350032754868e-26)
    sum e = 2.398755867661554e-16
    sum de = -1.2711137632955757e-32
Info: cfl dt = 39.64235681941008 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4388e+04 | 1536 |      1 | 6.298e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205023.959715733 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 524                                                     [SPH][rank=0]
Info: time since start : 58.835558745 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009347310000000001 s
sph::RenderFieldGetter compute custom field took :  0.000834766 s
rho_t_ampl=0.00128752, rho_t_phi=3.14159 rad
eps_t_ampl=-4.29371e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-3.67428e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20028.41s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 19650.516628141828, dt = 39.64235681941008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.01 us    (2.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 350.31 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.168747171446826e-23,5.547977992978962e-23,-1.6318246427886191e-22)
    sum a = (-1.911613935727217e-26,-1.1230681102720382e-25,-2.362481561900558e-26)
    sum e = 2.399163225774204e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.641749896275044 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3604e+04 | 1536 |      1 | 6.507e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2193127.4344043913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19690.15898496124, dt = 39.641749896275044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 302.37 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.90157587457027e-23,5.060119101370564e-23,-1.6434425041089029e-22)
    sum a = (9.635567540895296e-27,-6.518073813354945e-26,9.553455338869767e-27)
    sum e = 2.3991521341735504e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.64115459788989 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3600e+04 | 1536 |      1 | 6.508e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2192718.4450115757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19729.800734857516, dt = 39.64115459788989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 298.74 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.99151472698416e-23,4.8951442354552295e-23,-1.633079180512065e-22)
    sum a = (5.269854633626382e-26,-4.449788753767738e-27,-5.377622773454089e-27)
    sum e = 2.3991422428256657e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.640569186070195 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8090e+04 | 1536 |      1 | 5.468e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2609769.5400245744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19769.441889455404, dt = 39.640569186070195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 324.61 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.353915397004835e-23,4.99787564384686e-23,-1.6381703266669503e-22)
    sum a = (-3.644982788258248e-26,5.159026636075221e-26,7.107534219032739e-26)
    sum e = 2.3991320185180725e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.63999384914847 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8679e+04 | 1536 |      1 | 5.356e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2664451.022844481 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19809.082458641475, dt = 39.63999384914847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 334.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.994159987349274e-23,5.313449764409264e-23,-1.5948428701588405e-22)
    sum a = (-4.9185309913846233e-26,-8.585962175714277e-26,6.346516213096039e-26)
    sum e = 2.399121500529044e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.639428737823884 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0984e+04 | 1536 |      1 | 4.957e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2878622.4619595595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19848.722452490623, dt = 39.639428737823884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 315.59 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.734924471568061e-23,4.700694672168401e-23,-1.571193979896299e-22)
    sum a = (3.1179973248956097e-26,9.120611652929243e-27,6.3601481548184016e-27)
    sum e = 2.399110700405559e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.63887399999045 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0493e+04 | 1536 |      1 | 5.037e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832910.793790367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19888.361881228448, dt = 39.63887399999045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 280.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.041774673921333e-23,4.92509990393437e-23,-1.5799909394434096e-22)
    sum a = (8.015862219677776e-26,-1.575544941663144e-25,-7.323407955774474e-26)
    sum e = 2.399099630109882e-16
    sum de = -1.1170393677445968e-32
Info: cfl dt = 39.638329780555345 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0788e+04 | 1536 |      1 | 4.989e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860327.0010433407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19928.000755228437, dt = 39.638329780555345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.4%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.3%)
   LB compute        : 307.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.5126310189117e-23,3.9702380870825644e-23,-1.624794833227378e-22)
    sum a = (2.2448547434418264e-26,3.657575560196152e-26,3.225729873999564e-28)
    sum e = 2.399088301899963e-16
    sum de = -5.007417855406813e-33
Info: cfl dt = 39.637796221410625 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0832e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2864374.09281412 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 19967.639085008992, dt = 39.637796221410625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 288.11 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.475597373800098e-23,4.4999685893079756e-23,-1.610088658148285e-22)
    sum a = (-1.8883645770494535e-26,-1.4842937315697928e-25,-6.600352662664464e-26)
    sum e = 2.3990767283146536e-16
    sum de = -3.4666738998970245e-33
Info: cfl dt = 39.63726045849655 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0970e+04 | 1536 |      1 | 4.960e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2877152.8410132695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20007.276881230402, dt = 21.13429745261601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.9%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 277.47 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.338043834814149e-23,3.819605976570974e-23,-1.6371831418980839e-22)
    sum a = (2.064026398170333e-26,3.5501472389674864e-26,-8.209096519919124e-26)
    sum e = 2.3987147979303585e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.6369807085944 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0744e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1522847.887654693 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 534                                                     [SPH][rank=0]
Info: time since start : 59.686889397 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010603350000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008957290000000001 s
rho_t_ampl=0.00119121, rho_t_phi=3.14159 rad
eps_t_ampl=-4.66589e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-5.09092e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20406.31s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 20028.411178683018, dt = 39.6369807085944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.52 us    (2.2%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 360.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.486178415260556e-23,4.1546952697543455e-23,-1.671421505497788e-22)
    sum a = (-6.109414808101174e-26,1.4481530058785503e-26,-2.909665289281516e-26)
    sum e = 2.399062021585643e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.6364574926646 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0825e+04 | 1536 |      1 | 4.983e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863607.3522943603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20068.048159391612, dt = 39.6364574926646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 300.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.094679881223623e-23,4.1704360543024696e-23,-1.672451715280683e-22)
    sum a = (3.1567462560252154e-26,6.60141208050878e-26,-2.746023975536781e-26)
    sum e = 2.3990480420922624e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63594795890596 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0913e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2871781.8467457304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20107.684616884275, dt = 39.63594795890596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 288.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.327462793353691e-23,4.534222644426547e-23,-1.6830115335207054e-22)
    sum a = (-7.246050121236275e-26,-3.1049974495227414e-26,3.898751108526136e-27)
    sum e = 2.39903572940724e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.635449679244616 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0865e+04 | 1536 |      1 | 4.977e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2867243.5964457574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20147.32056484318, dt = 39.635449679244616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 275.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.846025406902867e-23,4.218813449002263e-23,-1.6752515293373528e-22)
    sum a = (-3.740563485044609e-26,-9.489475430231402e-26,-1.3346119942653646e-28)
    sum e = 2.3990232072758617e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.634962814292706 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0377e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821852.9099957403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20186.956014522424, dt = 39.634962814292706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 281.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.819572803251723e-23,3.7161448773700094e-23,-1.6761035193742194e-22)
    sum a = (-5.600512179265684e-26,-4.4895719988142153e-26,-9.056210421895462e-26)
    sum e = 2.399010513748987e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63448748888107 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0139e+04 | 1536 |      1 | 5.096e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2799715.568822947 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20226.590977336717, dt = 39.63448748888107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.8%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 281.48 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (60.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.539175204549594e-23,3.637315343510977e-23,-1.7299180247577022e-22)
    sum a = (-7.323547983495487e-26,1.5119095978106395e-25,3.0012724685797626e-26)
    sum e = 2.398997662723999e-16
    sum de = 0
Info: cfl dt = 39.63402382479295 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0955e+04 | 1536 |      1 | 4.962e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2875493.6031596586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20266.2254648256, dt = 39.63402382479295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.9%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 277.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2376155229265504e-23,4.6251263452255644e-23,-1.69412816656677e-22)
    sum a = (-3.0689153454647755e-26,1.4814939888530431e-25,3.373405832305089e-28)
    sum e = 2.3989846684023445e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.63357194055334 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0793e+04 | 1536 |      1 | 4.988e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860427.326309142 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20305.859488650392, dt = 39.63357194055334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 279.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.174129274163804e-23,5.206274418705647e-23,-1.699875240846686e-22)
    sum a = (-3.1128308007449954e-26,-1.2772424066434927e-26,-5.048437730787978e-26)
    sum e = 2.398971545136968e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.63313195140974 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0713e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2852980.451542665 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20345.493060590947, dt = 39.63313195140974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 305.83 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0630283388289984e-23,4.836748143157996e-23,-1.7299550117808725e-22)
    sum a = (2.0821092326974825e-26,1.2718781960921204e-25,4.817302605015444e-26)
    sum e = 2.398958307422065e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63270396931149 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0694e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2851172.439219292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20385.126192542357, dt = 21.17953668185146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 291.09 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2640681265776946e-23,5.383473280761333e-23,-1.7002016786314636e-22)
    sum a = (4.985695805342607e-26,3.2949476236580545e-26,3.852838986681015e-27)
    sum e = 2.3986652690134187e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 39.632483201110745 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0986e+04 | 1536 |      1 | 4.957e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1538150.521041837 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 544                                                     [SPH][rank=0]
Info: time since start : 60.504656014000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010482430000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009668610000000001 s
rho_t_ampl=0.00106516, rho_t_phi=3.14159 rad
eps_t_ampl=-4.99241e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.38019e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20784.20s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 20406.30572922421, dt = 39.632483201110745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.99 us    (2.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 333.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.359297499721814e-23,5.41426770214555e-23,-1.703368108005586e-22)
    sum a = (5.0270279985475195e-26,2.7289023043115316e-26,-1.852135908961534e-26)
    sum e = 2.3989416848478164e-16
    sum de = 0
Info: cfl dt = 39.63207079163671 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2442e+04 | 1536 |      1 | 6.844e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2084607.505761959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20445.93821242532, dt = 39.63207079163671 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 299.22 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.613242494772798e-23,5.511200090812816e-23,-1.715142231298537e-22)
    sum a = (3.407322677329999e-26,5.610413842982071e-26,3.9231903562504174e-28)
    sum e = 2.398926203150976e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.631673748118395 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2818e+04 | 1536 |      1 | 6.731e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2119537.4746459206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20485.57028321696, dt = 39.631673748118395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 298.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.69260030572623e-23,5.790649632333306e-23,-1.7112388075463337e-22)
    sum a = (-7.000640224082106e-27,-1.8835168612433386e-26,-2.9137824544360975e-26)
    sum e = 2.398912698114096e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.63128905186017 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8426e+04 | 1536 |      1 | 5.404e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2640376.3181124576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20525.201956965077, dt = 39.63128905186017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 282.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.671438222805315e-23,5.567490985972554e-23,-1.7286381480954083e-22)
    sum a = (-1.2812979893522968e-26,7.20301257142696e-27,3.0761279722973504e-26)
    sum e = 2.3988991261596433e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.63091682859603 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9338e+04 | 1536 |      1 | 5.236e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2725061.121007867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20564.833246016937, dt = 39.63091682859603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 273.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.454526872865933e-23,5.647629587888248e-23,-1.704577777337151e-22)
    sum a = (-3.665648884860704e-26,2.812089523792751e-26,-9.806649728172472e-26)
    sum e = 2.3988855219101246e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.630557171479644 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9620e+04 | 1536 |      1 | 5.186e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2751253.9059069655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20604.464162845532, dt = 39.630557171479644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 302.46 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.290520730228839e-23,5.800518985092017e-23,-1.7689698911869028e-22)
    sum a = (3.7457300091952224e-26,-5.90663661867979e-26,-9.660858842236663e-26)
    sum e = 2.398871900242866e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.63021017047074 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9763e+04 | 1536 |      1 | 5.161e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2764541.504527229 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20644.094720017012, dt = 39.63021017047074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.5%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 301.43 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.713762388647146e-23,5.39366424964842e-23,-1.8069671891193972e-22)
    sum a = (-1.2709649410510687e-26,-1.0067963419862039e-25,-8.586129890653953e-26)
    sum e = 2.3988582761858453e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.62987591210347 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0049e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791073.4603496 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 20683.724930187484, dt = 39.62987591210347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 270.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.470398435056619e-23,4.91221362397946e-23,-1.8388643286212298e-22)
    sum a = (-2.5677625028552078e-26,4.976058396218396e-26,9.595411057206401e-27)
    sum e = 2.3988446647724864e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.629554479475104 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9412e+04 | 1536 |      1 | 5.222e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2731887.992616375 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20723.354806099585, dt = 39.629554479475104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 311.70 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 8.58 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.391040624103187e-23,5.407521513235886e-23,-1.8161470221145723e-22)
    sum a = (-1.2451323202979982e-26,3.607726674836711e-26,-4.257109701903274e-26)
    sum e = 2.3988310810181143e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.62924595223397 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0463e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2829462.2572212233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20762.98436057906, dt = 21.215919186335668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 301.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.391040624103187e-23,5.456963534818465e-23,-1.8355155490239268e-22)
    sum a = (6.863727334090833e-26,-9.58867654106642e-27,5.793936406689541e-26)
    sum e = 2.398612299693855e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 39.629089590329606 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0196e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1501472.9239156225 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 554                                                     [SPH][rank=0]
Info: time since start : 61.369392273 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009471950000000001 s
sph::RenderFieldGetter compute custom field took :  0.000808737 s
rho_t_ampl=0.000912537, rho_t_phi=3.14159 rad
eps_t_ampl=-5.26511e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.50987e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21162.09s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 20784.200279765395, dt = 39.629089590329606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.94 us    (2.2%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.682019264265772e-23,5.370515961099353e-23,-1.801892597430857e-22)
    sum a = (-1.857365432145769e-26,1.1214461294602037e-25,-4.694638093288148e-27)
    sum e = 2.3988142028287537e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.62879747618733 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9540e+04 | 1536 |      1 | 5.200e-02 | 0.0% |   1.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2743723.5223902543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20823.829369355724, dt = 39.62879747618733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.8%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 281.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.443945831405475e-23,6.056140840137635e-23,-1.8161636684681462e-22)
    sum a = (-6.452988664117012e-26,9.993172117465176e-26,1.2798642715283928e-26)
    sum e = 2.3987987508502287e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.62852202727822 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0137e+04 | 1536 |      1 | 5.097e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2799090.5272407206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20863.45816683191, dt = 39.62852202727822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 284.26 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.174129274163804e-23,6.427953625529692e-23,-1.8076255671087017e-22)
    sum a = (-2.3740178472071792e-26,2.148662508552116e-25,7.034255532919508e-26)
    sum e = 2.398785399076984e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.62825971278881 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9776e+04 | 1536 |      1 | 5.159e-02 | 0.0% |   1.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2765570.1875621076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20903.086688859188, dt = 39.62825971278881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 281.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.142386149782431e-23,7.50716754343935e-23,-1.768348135551445e-22)
    sum a = (1.704952969702653e-27,-7.276623557668077e-26,-3.965725213876851e-26)
    sum e = 2.398772127858012e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 39.62801062157447 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0068e+04 | 1536 |      1 | 5.108e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2792677.5531618684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20942.71494857198, dt = 39.62801062157447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 285.97 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.152967191242889e-23,6.648887114520327e-23,-1.8058590203347588e-22)
    sum a = (1.7721177836606363e-26,-1.4362054187802552e-25,7.165765240812406e-26)
    sum e = 2.39875896653301e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 39.62777481376727 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4725e+04 | 1536 |      1 | 6.212e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2296415.173675608 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20982.342959193553, dt = 39.62777481376727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 274.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2534870851172367e-23,5.939373519440644e-23,-1.7554067461029926e-22)
    sum a = (-5.9156701524531446e-27,-1.629750811329482e-25,-4.996465922471454e-27)
    sum e = 2.3987459294829693e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 39.62755234622879 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9844e+04 | 1536 |      1 | 5.147e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2771819.2294509476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21021.970734007322, dt = 39.62755234622879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.9%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 272.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2164534400056346e-23,5.2551952671645334e-23,-1.772574883950668e-22)
    sum a = (1.6457962681781216e-25,2.1230472513913924e-26,1.5607345533583281e-25)
    sum e = 2.398733031087897e-16
    sum de = 0
Info: cfl dt = 39.62734327230275 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0363e+04 | 1536 |      1 | 5.059e-02 | 0.1% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820062.3620907064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21061.59828635355, dt = 39.62734327230275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 280.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.24281446167003e-23,5.70430894108256e-23,-1.6788130863674577e-22)
    sum a = (1.082386809553654e-26,-6.485970349141235e-26,6.1182073662426635e-27)
    sum e = 2.3987202855723086e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.627147641810815 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9219e+04 | 1536 |      1 | 5.257e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2713766.7510790015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21101.225629625853, dt = 39.627147641810815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.7%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 279.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.935964259316756e-23,5.276740964503632e-23,-1.7061002557352742e-22)
    sum a = (-8.615179021149012e-26,-5.262730638854128e-26,5.165167727714169e-26)
    sum e = 2.398707706992425e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.62696550104749 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0196e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804482.8858166877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21140.852777267664, dt = 21.242053038920858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 312.84 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 5.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.618533015503026e-23,5.189185817169731e-23,-1.6861065713785333e-22)
    sum a = (-3.2368273803597337e-26,-1.7352088433814106e-25,-4.453945868090994e-26)
    sum e = 2.398561285276753e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.626877326068254 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9723e+04 | 1536 |      1 | 5.168e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1479798.342008036 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 564                                                     [SPH][rank=0]
Info: time since start : 62.374311645000006 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009361570000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008834680000000001 s
rho_t_ampl=0.000737149, rho_t_phi=3.14159 rad
eps_t_ampl=-5.4772e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.45171e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21539.99s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 21162.094830306585, dt = 39.626877326068254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.64 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 337.16 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.523303642358907e-23,4.3731837011907027e-23,-1.7139726540911888e-22)
    sum a = (-1.446626762171948e-27,-1.0266694067734643e-25,1.6747186626424293e-26)
    sum e = 2.3986922622386443e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.626712039473176 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2602e+04 | 1536 |      1 | 6.796e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2099181.0134760994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21201.721707632652, dt = 39.626712039473176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.4%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 339.76 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.618533015503026e-23,4.106687927346839e-23,-1.695193302795425e-22)
    sum a = (2.4592654956923117e-26,-6.710500980117397e-26,-2.186274478385129e-27)
    sum e = 2.398678367456372e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.626564313492324 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2601e+04 | 1536 |      1 | 6.796e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2099034.5320640258 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21241.348419672126, dt = 39.626564313492324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 302.17 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.623823536233256e-23,3.9112712553205677e-23,-1.69981100231325e-22)
    sum a = (1.3174636584065956e-27,4.1026816751050774e-26,-1.1141443447634833e-25)
    sum e = 2.398666498672902e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.626430192335874 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3546e+04 | 1536 |      1 | 6.523e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2186864.3353825533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21280.97498398562, dt = 39.626430192335874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 326.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.570918328930967e-23,4.288063924178298e-23,-1.7656022489502286e-22)
    sum a = (4.489709486883653e-26,7.400196005508977e-27,4.8003442794597516e-26)
    sum e = 2.398654848306993e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.626309726780676 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3833e+04 | 1536 |      1 | 6.445e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2213507.570704842 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21320.601414177956, dt = 39.626309726780676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.3%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 329.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.935964259316756e-23,4.250790035693692e-23,-1.7149944491034695e-22)
    sum a = (-3.470612598175022e-26,-1.3828866940353604e-25,3.499331365528574e-27)
    sum e = 2.398643439074923e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.62620294328221 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4266e+04 | 1536 |      1 | 6.330e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2253726.615083554 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21360.227723904736, dt = 39.62620294328221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 307.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.639695098423942e-23,3.41413667686914e-23,-1.7224254654729205e-22)
    sum a = (-1.2748398341640292e-26,5.277551127458416e-26,8.433108814178618e-27)
    sum e = 2.398632283447415e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62610986501305 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9826e+04 | 1536 |      1 | 5.150e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2770040.9504250335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21399.85392684802, dt = 39.62610986501305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 293.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.682019264265772e-23,4.0017984456721095e-23,-1.7181062181769136e-22)
    sum a = (-4.8604075946902147e-26,-9.711467735026512e-26,-3.824726702022007e-26)
    sum e = 2.3986213937331527e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 39.62603051160412 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0536e+04 | 1536 |      1 | 5.030e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836015.3788650776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21439.480036713034, dt = 39.62603051160412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 275.59 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2376155229265504e-23,3.3199858156414616e-23,-1.7425109003829632e-22)
    sum a = (5.554013461910158e-28,5.0231553128118206e-26,-4.216879946850985e-26)
    sum e = 2.398610781947904e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.62596489914718 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9959e+04 | 1536 |      1 | 5.127e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782407.7728323643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21479.10606722464, dt = 39.62596489914718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 330.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.438655310675246e-23,3.810970292907102e-23,-1.7599976678809825e-22)
    sum a = (1.1680219473500827e-25,5.708781511231026e-26,1.800687455290292e-26)
    sum e = 2.398600459802293e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62591304019681 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0380e+04 | 1536 |      1 | 5.056e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821467.6246091616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21518.732032123786, dt = 21.25734872398607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.9%)
   patch tree reduce : 1.30 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 270.38 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.978288425158588e-23,3.945879863158975e-23,-1.7442472880301945e-22)
    sum a = (2.039485408454916e-26,-1.1502536877331841e-25,-9.411605229041844e-27)
    sum e = 2.398517447152038e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.62589510450264 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9869e+04 | 1536 |      1 | 5.142e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1488148.5135288232 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 574                                                     [SPH][rank=0]
Info: time since start : 63.271158501 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000908054 s
sph::RenderFieldGetter compute custom field took :  0.0008757540000000001 s
rho_t_ampl=0.000543385, rho_t_phi=3.14159 rad
eps_t_ampl=-5.62337e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.18219e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21917.88s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 21539.989380847772, dt = 39.62589510450264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.42 us    (2.3%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 340.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.872478010554011e-23,3.30715023220478e-23,-1.7508909417769719e-22)
    sum a = (1.3303799687831307e-26,7.982675563907832e-26,-3.262548736767662e-26)
    sum e = 2.3985879965358937e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.62586013773118 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9939e+04 | 1536 |      1 | 5.130e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2780493.8364424263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21579.615275952274, dt = 39.62586013773118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.8%)
   patch tree reduce : 1.31 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 269.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.01003154953996e-23,4.0095501693445867e-23,-1.768418426063483e-22)
    sum a = (3.732813698818687e-27,8.713025038850105e-26,-7.245027895693745e-26)
    sum e = 2.3985770315429325e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.62584321185594 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9808e+04 | 1536 |      1 | 5.153e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2768376.5171127412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21619.241136090004, dt = 39.62584321185594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 315.01 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.935964259316756e-23,4.3692558512051983e-23,-1.8050179181171387e-22)
    sum a = (-1.4362937138707197e-26,-6.447542197228682e-26,-9.373209777389028e-26)
    sum e = 2.3985678282405317e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.62584004014177 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0083e+04 | 1536 |      1 | 5.106e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2793865.5726778917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21658.86697930186, dt = 39.62584004014177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 310.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.904221134935384e-23,3.813426975140719e-23,-1.84637659932583e-22)
    sum a = (-6.827561665036534e-26,2.547660075803485e-26,-1.9325759474271658e-26)
    sum e = 2.398558958016058e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.62585063483588 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0264e+04 | 1536 |      1 | 5.075e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2810728.937579996 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21698.492819342002, dt = 39.62585063483588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.5%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 275.96 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.576208849661196e-23,4.0926440230744325e-23,-1.8392925276119968e-22)
    sum a = (-6.161080049607315e-27,4.188582707259648e-27,-4.216176769109657e-26)
    sum e = 2.398550436271075e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 39.62587498870935 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0448e+04 | 1536 |      1 | 5.045e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2827803.698961576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21738.118669976837, dt = 39.62587498870935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 298.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.586789891121654e-23,4.0670290421512066e-23,-1.8605239782237907e-22)
    sum a = (-3.874893112960575e-28,2.3041836046257834e-26,4.9520315030613266e-26)
    sum e = 2.3985422723331455e-16
    sum de = -1.9259299443872359e-32
Info: cfl dt = 39.62591309129951 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0308e+04 | 1536 |      1 | 5.068e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2814763.636293482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21777.744544965546, dt = 39.62591309129951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 265.87 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.55504676674028e-23,4.195725221296447e-23,-1.8227361874840272e-22)
    sum a = (1.0643039750265046e-26,1.3849481873104532e-26,-7.666614514263907e-26)
    sum e = 2.398534475226888e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.62596492864465 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0328e+04 | 1536 |      1 | 5.065e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2816649.450822843 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21817.370458056845, dt = 39.62596492864465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 270.60 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.55504676674028e-23,4.23236750220364e-23,-1.8781171557910324e-22)
    sum a = (-3.0095003177327135e-26,9.209760801306828e-26,-9.178604450129726e-26)
    sum e = 2.398527053574222e-16
    sum de = -2.0800043399382147e-32
Info: cfl dt = 39.62603048329307 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9910e+04 | 1536 |      1 | 5.135e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2777821.2419096 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 21856.99642298549, dt = 39.62603048329307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.5%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 302.01 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.428074269214789e-23,4.752338117400782e-23,-1.9174840247730534e-22)
    sum a = (6.837248897818934e-26,5.991050627491603e-26,-8.598445233087105e-26)
    sum e = 2.3985200155850405e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.626109734312365 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9987e+04 | 1536 |      1 | 5.122e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2785020.5467255344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21896.622453468783, dt = 21.261477920183097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 281.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.724343430107603e-23,4.8159716121018205e-23,-1.9346161197791944e-22)
    sum a = (-5.495890065215749e-27,-2.1071249267764998e-26,1.1037823936748915e-26)
    sum e = 2.398485281202099e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.62616232947549 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9940e+04 | 1536 |      1 | 5.130e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1491936.3151960515 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 584                                                     [SPH][rank=0]
Info: time since start : 64.096626902 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009674540000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008128670000000001 s
rho_t_ampl=0.000336091, rho_t_phi=3.14159 rad
eps_t_ampl=-5.7e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.68306e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22295.78s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 21917.883931388966, dt = 39.62616232947549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.97 us    (1.9%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 459.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.629114056963484e-23,4.646390144090695e-23,-1.919928068825213e-22)
    sum a = (-3.325949921957827e-27,-8.839267644537262e-26,-1.2266159697632918e-25)
    sum e = 2.398511785046826e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.62625811242652 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2514e+04 | 1536 |      1 | 6.822e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2090999.4193907126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21957.51009371844, dt = 39.62625811242652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 311.06 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.682019264265772e-23,4.162768609555199e-23,-1.9950242446301728e-22)
    sum a = (-1.291631037653525e-29,-7.534572845676999e-26,5.505582266545211e-26)
    sum e = 2.39850483239639e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.626371998073985 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2493e+04 | 1536 |      1 | 6.829e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2089060.0665252681 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21997.136351830868, dt = 39.626371998073985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 306.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.565627808200738e-23,3.8900265080132426e-23,-1.9379962378251638e-22)
    sum a = (-6.172704728946197e-26,2.2011379792146496e-26,-9.511681659415884e-26)
    sum e = 2.3984992130352797e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.62649946798162 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4660e+04 | 1536 |      1 | 6.229e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290250.3044220265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22036.762723828942, dt = 39.62649946798162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 298.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.311682813149754e-23,4.17015480164402e-23,-2.0054416869829993e-22)
    sum a = (-4.4102741780679613e-26,-8.96164587171654e-26,5.48241345945539e-26)
    sum e = 2.3984940068988307e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 39.62664049614343 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9945e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2781162.893160378 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22076.389223296923, dt = 39.62664049614343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 308.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2164534400056346e-23,3.5938348449826867e-23,-1.954008549149526e-22)
    sum a = (1.7127027559285743e-26,-1.5225553762854068e-26,3.043854552074574e-26)
    sum e = 2.3984892220957754e-16
    sum de = 2.2340787354891936e-32
Info: cfl dt = 39.62679504226736 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9079e+04 | 1536 |      1 | 5.282e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2700664.676507489 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22116.015863793065, dt = 39.62679504226736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 264.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2587776058474656e-23,3.6808759231636017e-23,-1.946778323959766e-22)
    sum a = (3.0656862678706414e-26,6.82596496263609e-26,-9.267306694538083e-26)
    sum e = 2.398484863889363e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.62696306293595 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9657e+04 | 1536 |      1 | 5.179e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2754370.4637542036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22155.64265883533, dt = 39.62696306293595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.8%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 273.61 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.607951974042568e-23,4.116827876807938e-23,-2.007894439140069e-22)
    sum a = (-1.2884019600593912e-27,2.173738605933199e-26,-1.6505872522505866e-26)
    sum e = 2.398480937129141e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 39.62714451133943 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0048e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790697.4206287293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22195.269621898267, dt = 39.62714451133943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.5%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 316.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3751690619125e-23,4.110737836465402e-23,-1.9993438720974217e-22)
    sum a = (-2.0672554757644668e-26,2.9129334751547263e-26,-3.59545653745847e-26)
    sum e = 2.3984774461908126e-16
    sum de = 1.3096323621833204e-32
Info: cfl dt = 39.627339337290735 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9848e+04 | 1536 |      1 | 5.146e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2772185.2496988107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22234.896766409605, dt = 39.627339337290735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 296.77 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.269358647307923e-23,4.240752770900087e-23,-2.0174451905366656e-22)
    sum a = (-3.3475847418385233e-26,4.2879361271257174e-26,2.993867996834217e-26)
    sum e = 2.398474394971956e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 39.6275474872408 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0342e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818071.4935668926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22274.524105746896, dt = 21.25437618325668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 294.46 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.152967191242889e-23,4.3591636920924926e-23,-1.9980260409057123e-22)
    sum a = (-1.06033220958572e-25,1.0739499771550552e-26,3.897665285459052e-26)
    sum e = 2.3984680873575497e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.627669156327926 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0604e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1524518.7125973147 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 594                                                     [SPH][rank=0]
Info: time since start : 64.966795346 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000894989 s
sph::RenderFieldGetter compute custom field took :  0.000819749 s
rho_t_ampl=0.00012045, rho_t_phi=3.14159 rad
eps_t_ampl=-5.70516e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.94182e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22673.67s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 22295.778481930152, dt = 39.627669156327926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.98 us    (2.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 342.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.687401366982751e-23,4.36756510617691e-23,-1.981620019485979e-22)
    sum a = (7.371984147407494e-26,2.6318776674564657e-26,2.6040267475042033e-26)
    sum e = 2.398471225553246e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.62789309273881 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5993e+04 | 1536 |      1 | 5.909e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2414169.922774959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22335.40615108648, dt = 39.62789309273881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 305.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.459817393596161e-23,4.5027330026363135e-23,-1.9738640041293948e-22)
    sum a = (-3.3971510829084775e-26,1.4390905396960881e-26,1.311518719700589e-26)
    sum e = 2.39846897110103e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 39.62813477939298 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2414e+04 | 1536 |      1 | 6.853e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2081804.266954645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22375.03404417922, dt = 39.62813477939298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 303.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.994251569336024e-23,4.536088082552678e-23,-1.9712276685677769e-22)
    sum a = (4.529265687411792e-26,6.3828717984112264e-27,-2.643349579149273e-27)
    sum e = 2.398467499325402e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62838956893269 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3944e+04 | 1536 |      1 | 6.415e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2223851.665251995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22414.662178958613, dt = 39.62838956893269 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 300.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3751690619125e-23,4.545535717777595e-23,-1.9753975925331258e-22)
    sum a = (-3.9505342556031595e-26,5.205144423183315e-26,5.14955992198851e-26)
    sum e = 2.3984664784884643e-16
    sum de = 0
Info: cfl dt = 39.62865739806439 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3802e+04 | 1536 |      1 | 6.453e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2210696.594652485 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22454.290568527547, dt = 39.62865739806439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.4%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 298.41 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.036575735177854e-23,4.842310552221651e-23,-1.9442633811738872e-22)
    sum a = (2.970579841855919e-26,8.818629987625775e-26,3.8903873965470385e-26)
    sum e = 2.398465910143108e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 39.62851764699864 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0232e+04 | 1536 |      1 | 5.081e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807953.3549393285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22493.919225925612, dt = 39.62851764699864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 315.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.354006978991584e-23,5.2633299594396754e-23,-1.9313413184448994e-22)
    sum a = (9.105998815457352e-28,-3.9978243965418776e-26,1.297772550984254e-26)
    sum e = 2.3984657949661584e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.628231647585594 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0512e+04 | 1536 |      1 | 5.034e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833976.280526135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22533.54774357261, dt = 39.628231647585594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 277.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.33284489607067e-23,4.8509767506687876e-23,-1.931335549475244e-22)
    sum a = (4.9396814496261995e-27,5.940770396964773e-26,-3.648466783503869e-27)
    sum e = 2.3984661331293355e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 39.62795750017091 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0046e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790630.3016318376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22573.175975220194, dt = 39.62795750017091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.2%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 355.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.343425937531127e-23,5.283290825495573e-23,-1.9360756953397205e-22)
    sum a = (2.3590026363944568e-26,3.2744754609150114e-26,1.307174701419206e-26)
    sum e = 2.398466924269753e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.62769702524313 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0293e+04 | 1536 |      1 | 5.070e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813547.213766953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22612.803932720366, dt = 39.62769702524313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 291.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.491560517977535e-23,5.360217786836142e-23,-1.9275827234281672e-22)
    sum a = (-8.309223919104833e-26,-4.790418441525995e-26,5.717699297747934e-26)
    sum e = 2.39846816752851e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.62745029402031 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0090e+04 | 1536 |      1 | 5.105e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2794709.139962952 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22652.43162974561, dt = 21.24140272573277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 297.10 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.110643025401058e-23,5.0986450646922945e-23,-1.9066985814620676e-22)
    sum a = (8.285167291028536e-26,-5.269391872750465e-26,-2.250314383948412e-27)
    sum e = 2.398467625326092e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.6273285326995 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0525e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1519664.383756173 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 604                                                     [SPH][rank=0]
Info: time since start : 65.842821609 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009536890000000001 s
sph::RenderFieldGetter compute custom field took :  0.000806425 s
rho_t_ampl=-9.81472e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-5.63875e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.95202e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23051.57s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 22673.673032471343, dt = 39.6273285326995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.23 us    (2.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 339.17 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.576208849661196e-23,4.884719965711967e-23,-1.9139019177788593e-22)
    sum a = (4.398003683210253e-26,-9.31068953960612e-26,2.7891067196601723e-26)
    sum e = 2.398470381313353e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 39.62709824183203 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3381e+04 | 1536 |      1 | 6.569e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2171551.5111941085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22713.300361004043, dt = 39.62709824183203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 340.43 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.639695098423942e-23,4.4357154346166226e-23,-1.8968773850285438e-22)
    sum a = (-1.95391485221037e-26,8.53535679063332e-26,-1.3547686357213887e-26)
    sum e = 2.398473045592756e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.62688665625035 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2320e+04 | 1536 |      1 | 6.882e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2073008.2198902096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22752.927459245875, dt = 39.62688665625035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 332.76 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.459817393596161e-23,5.1275097893062564e-23,-1.9104563991363754e-22)
    sum a = (-6.2288906790841244e-27,8.216433662516762e-27,4.8609988175220917e-26)
    sum e = 2.398475873314609e-16
    sum de = -3.158525108795067e-32
Info: cfl dt = 39.62668903463863 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3461e+04 | 1536 |      1 | 6.547e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2178975.9038504916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22792.554345902125, dt = 39.62668903463863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.3%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 326.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.364588020452042e-23,5.0072395652351485e-23,-1.8788782946648412e-22)
    sum a = (-3.466737705062061e-26,1.8023423756502007e-25,-3.843358283062494e-26)
    sum e = 2.398479143125464e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.626505429295186 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3743e+04 | 1536 |      1 | 6.469e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2205154.9196308088 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22832.181034936762, dt = 39.626505429295186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 325.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.205872398545177e-23,6.062256067285405e-23,-1.9113544230554321e-22)
    sum a = (-1.152005722483179e-25,-2.0208650775645634e-26,3.455593791169908e-26)
    sum e = 2.398482851353708e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.6263358885979 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3818e+04 | 1536 |      1 | 6.449e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2212117.6573232375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22871.80754036606, dt = 39.6263358885979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 329.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.655658242601378e-23,5.585015190075918e-23,-1.8831995728292087e-22)
    sum a = (8.004883355857721e-26,4.717126421299182e-26,6.183890042078889e-26)
    sum e = 2.3984869939675785e-16
    sum de = -1.9259299443872359e-32
Info: cfl dt = 39.62618045715078 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3896e+04 | 1536 |      1 | 6.428e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2219337.0564917973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22911.433876254658, dt = 39.62618045715078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 294.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.301101771689296e-23,5.905446892790117e-23,-1.8532895593736304e-22)
    sum a = (-3.3440327564849764e-26,-1.302767319006294e-25,1.774006786876527e-26)
    sum e = 2.398491566432292e-16
    sum de = -3.774822690998982e-32
Info: cfl dt = 39.6260391754364 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3989e+04 | 1536 |      1 | 6.403e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2227935.7902848306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22951.06005671181, dt = 39.6260391754364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 317.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9307653205732776e-23,5.037625831211467e-23,-1.8549972146134807e-22)
    sum a = (-9.859665525928184e-26,8.171673727764171e-26,6.808123148133121e-26)
    sum e = 2.3984965637417356e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.625912079806575 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4101e+04 | 1536 |      1 | 6.373e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2238351.8265652023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22990.686095887246, dt = 39.625912079806575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.5%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 295.76 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.496942620694513e-23,5.781445469558988e-23,-1.8180453010766262e-22)
    sum a = (3.883288714705323e-26,-1.223907788782314e-25,3.5731913273138314e-26)
    sum e = 2.398501980423928e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.625799202474305 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0026e+04 | 1536 |      1 | 5.115e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2788653.027479 (tsim/hr)                                [sph::Model][rank=0]
---------------- t = 23030.31200796705, dt = 21.255575045481237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 324.81 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.856698030350074e-23,5.116892905084504e-23,-1.8168596336314598e-22)
    sum a = (-3.698585476320869e-26,-4.998759694656061e-26,1.1262896251637987e-26)
    sum e = 2.3984839715473874e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.625749213217524 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0767e+04 | 1536 |      1 | 4.992e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1532728.4529210117 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 614                                                     [SPH][rank=0]
Info: time since start : 66.777475116 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009241550000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007804460000000001 s
rho_t_ampl=-0.000314235, rho_t_phi=3.14159 rad
eps_t_ampl=-5.50246e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.71342e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23429.46s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 23051.567583012533, dt = 39.625749213217524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 370.58 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.623915118220005e-23,4.9957498613397016e-23,-1.814997141746578e-22)
    sum a = (1.449210024247255e-25,-1.748031513661112e-26,4.970882537794899e-26)
    sum e = 2.398509366817012e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.62565357339951 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3183e+04 | 1536 |      1 | 6.626e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2153051.413361092 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23091.19333222575, dt = 39.62565357339951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 288.95 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.428074269214789e-23,4.990850058998363e-23,-1.787682451077758e-22)
    sum a = (-5.179440460990635e-27,8.730986546462768e-26,3.3788690890749187e-26)
    sum e = 2.3985166788099846e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62557686869607 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8015e+04 | 1536 |      1 | 5.483e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2601862.4735313095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23130.81898579915, dt = 39.62557686869607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.7%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 288.56 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2270344814660925e-23,5.544446350814258e-23,-1.7774477160660895e-22)
    sum a = (4.5207086317873374e-27,-1.345365979148078e-25,6.503652264185475e-26)
    sum e = 2.3985235290646676e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.62551447021458 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9925e+04 | 1536 |      1 | 5.133e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2779213.019130894 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23170.444562667846, dt = 39.62551447021458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 284.56 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2376155229265504e-23,4.571799420389482e-23,-1.7454855925805565e-22)
    sum a = (1.232216009921463e-26,3.747033307798402e-26,3.273038901523797e-26)
    sum e = 2.39853076713714e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.62546638436375 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0422e+04 | 1536 |      1 | 5.049e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825397.81377403 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23210.07007713806, dt = 39.62546638436375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 273.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.290520730228839e-23,5.0610579556810583e-23,-1.738916759111326e-22)
    sum a = (3.964015654558668e-26,2.808186565454607e-26,-1.1943737928979248e-25)
    sum e = 2.398538386094491e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.62543262003956 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0346e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818315.9851126205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23249.695543522426, dt = 39.62543262003956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.8%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 271.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.480979476517077e-23,5.153745721850835e-23,-1.8163929313037584e-22)
    sum a = (2.2474380055171335e-27,9.481088027316483e-26,7.97455467205474e-26)
    sum e = 2.3985463776554414e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.62541318230237 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0371e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820640.5485547637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23289.320976142466, dt = 39.62541318230237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.5%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 282.94 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.417493227754331e-23,5.661633451598487e-23,-1.745329880852811e-22)
    sum a = (2.0022864345704946e-25,-4.9397476709440486e-27,-4.7063892179974934e-26)
    sum e = 2.3985547330666933e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.625408072057915 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0419e+04 | 1536 |      1 | 5.049e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825074.95443366 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23328.946389324767, dt = 39.625408072057915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.5%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 281.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.570826746944218e-23,5.444426318151482e-23,-1.7891035222429702e-22)
    sum a = (-7.659372053285403e-27,3.2524698016543635e-26,1.5253132060290528e-26)
    sum e = 2.398563443175226e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 39.6254172860606 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0216e+04 | 1536 |      1 | 5.083e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2806223.536948347 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23368.571797396824, dt = 39.6254172860606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 279.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (26.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.126423005604995e-23,5.647525611589716e-23,-1.7707127174380794e-22)
    sum a = (7.485001863202178e-26,9.881752542807903e-26,2.684757191872525e-26)
    sum e = 2.398572498439358e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 39.62544081691831 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0393e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2822619.9836782096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23408.197214682885, dt = 21.264918870834663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 280.51 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.507340498181472e-23,5.989007348232315e-23,-1.762706430462829e-22)
    sum a = (1.2327326623365243e-25,-4.308904161403602e-26,1.4733716707352077e-26)
    sum e = 2.398515556114347e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.62546378866872 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0338e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1512056.061893778 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 624                                                     [SPH][rank=0]
Info: time since start : 67.61893897200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009015210000000001 s
sph::RenderFieldGetter compute custom field took :  0.000804841 s
rho_t_ampl=-0.000522412, rho_t_phi=3.14159 rad
eps_t_ampl=-5.2997e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.23201e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23807.36s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 23429.46213355372, dt = 39.62546378866872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.86 us    (2.3%)
   patch tree reduce : 2.64 us    (0.7%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.4%)
   LB compute        : 368.29 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.036392571204355e-23,5.667352470925457e-23,-1.7581561276256592e-22)
    sum a = (4.5400830973521404e-26,4.783183131871835e-26,7.969945957790674e-27)
    sum e = 2.3985843346470215e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 39.62550489658643 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3309e+04 | 1536 |      1 | 6.590e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2164717.0552047887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23469.08759734239, dt = 39.62550489658643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 333.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.036392571204355e-23,6.037025346595882e-23,-1.756338084064459e-22)
    sum a = (-4.742869170263744e-26,2.954191327046864e-26,-7.432163970912139e-27)
    sum e = 2.3985955629136456e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.625564669783316 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4273e+04 | 1536 |      1 | 6.328e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2254308.2280350314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23508.713102238977, dt = 39.625564669783316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 284.13 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.60256987132559e-23,6.117872731043488e-23,-1.7623347029170952e-22)
    sum a = (-7.854408339971086e-26,1.1543542457536937e-27,3.078152896146425e-26)
    sum e = 2.3986057605507505e-16
    sum de = 3.697785493223493e-32
Info: cfl dt = 39.62563871402377 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0782e+04 | 1536 |      1 | 4.990e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2858837.1773083652 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23548.33866690876, dt = 39.62563871402377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 315.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.401530083576895e-23,6.066221374571001e-23,-1.742566129657376e-22)
    sum a = (3.4525297636478726e-26,-6.708506772431334e-26,2.708607007265776e-26)
    sum e = 2.3986162518525725e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.62572699000181 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0747e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2855588.203363638 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23587.964305622783, dt = 39.62572699000181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.7%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 296.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.644894037167421e-23,5.665182853689959e-23,-1.732565252072084e-22)
    sum a = (-9.443114516284921e-26,-4.49919521765603e-26,-1.9623923491897043e-27)
    sum e = 2.3986270288493856e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.62582946721914 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9946e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2781194.6179365045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23627.590032612785, dt = 39.62582946721914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 299.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.131713526335224e-23,5.530675303598556e-23,-1.7390981985249076e-22)
    sum a = (1.5732066038619935e-26,1.4745995928499585e-26,-2.5949988260496794e-27)
    sum e = 2.3986380798285907e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.62594611139213 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0036e+04 | 1536 |      1 | 5.114e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2789553.690764097 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23667.215862080004, dt = 39.62594611139213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 279.38 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.184618733637512e-23,5.707448896135095e-23,-1.7402518291431568e-22)
    sum a = (-7.76399416733534e-26,9.478196993782985e-26,3.4337556916334654e-26)
    sum e = 2.3986493926834804e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62607688417169 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0982e+04 | 1536 |      1 | 4.958e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2877429.0095004663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23706.841808191395, dt = 39.62607688417169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 277.89 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.697890826456459e-23,6.241615182251568e-23,-1.7193277651212929e-22)
    sum a = (-1.3290883377454773e-26,-1.5145004595705186e-27,-4.123768627167142e-26)
    sum e = 2.3986609550196097e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62622174315856 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1051e+04 | 1536 |      1 | 4.947e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2883829.248855532 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23746.467885075566, dt = 39.62622174315856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 289.42 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.957126342237672e-23,6.044834224941776e-23,-1.7506424541106143e-22)
    sum a = (-7.796284943276677e-26,3.8595278751820826e-26,6.029460402090796e-26)
    sum e = 2.3986727541695765e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62638064192028 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0801e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860597.3195309164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23786.094106818724, dt = 21.262577276185766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 299.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.592080411851882e-23,6.206372383573673e-23,-1.7177055620911718e-22)
    sum a = (-5.665093731148361e-26,-8.331143805991887e-26,-3.0871044671657196e-28)
    sum e = 2.398559243022895e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.62647575787951 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1268e+04 | 1536 |      1 | 4.912e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1558215.6618470505 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 634                                                     [SPH][rank=0]
Info: time since start : 68.463664732 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001065097 s
sph::RenderFieldGetter compute custom field took :  0.000987913 s
rho_t_ampl=-0.000717474, rho_t_phi=3.14159 rad
eps_t_ampl=-5.03554e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.51984e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24185.25s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 23807.35668409491, dt = 39.62647575787951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.90 us    (2.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 363.83 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.459817393596161e-23,5.746631330931714e-23,-1.7242708064468306e-22)
    sum a = (4.758368742715586e-26,-9.287767818781902e-26,4.287338012411994e-26)
    sum e = 2.398687871908153e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.626652106753234 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0640e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2845703.895765504 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23846.98315985279, dt = 39.626652106753234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 285.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.840734886172638e-23,5.359636229961438e-23,-1.6987257509327261e-22)
    sum a = (-4.4199614108503624e-26,2.9603533783424663e-26,4.8809646735745837e-26)
    sum e = 2.3987018984216003e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 39.626846364031515 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0714e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2852531.957659985 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23886.60981195954, dt = 39.626846364031515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.5%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 283.22 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.486269997247305e-23,5.719636726606394e-23,-1.6782078553507848e-22)
    sum a = (-2.2603543158936688e-26,9.963804224357825e-26,3.8417468550689527e-26)
    sum e = 2.3987144372187817e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62705448410127 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0940e+04 | 1536 |      1 | 4.964e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2873582.7322526905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23926.23665832357, dt = 39.62705448410127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 268.73 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.406912186293873e-23,6.253242606306405e-23,-1.6650431903984117e-22)
    sum a = (2.841588282837755e-27,6.551059913133691e-26,2.5043816916927027e-26)
    sum e = 2.398727144952693e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.627276383458806 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0594e+04 | 1536 |      1 | 5.021e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841431.3375634747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23965.863712807673, dt = 39.627276383458806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.6%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 276.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.406912186293873e-23,6.445225961580714e-23,-1.6577687999614924e-22)
    sum a = (2.1828564536344573e-26,7.692381172855592e-26,9.23501884210976e-26)
    sum e = 2.398740014941239e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62751199345683 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0887e+04 | 1536 |      1 | 4.973e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2868676.266520242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24005.490989191134, dt = 39.62751199345683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.5%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 284.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.507432080168221e-23,6.772661856504349e-23,-1.6078368770391142e-22)
    sum a = (1.0619790391587284e-25,-7.697936826083469e-26,9.042978093735757e-27)
    sum e = 2.398753033196114e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 39.62776124182473 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0576e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839774.289110003 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24045.118501184592, dt = 39.62776124182473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.8%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 266.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.094679881223623e-23,6.16266794851423e-23,-1.6207596346529227e-22)
    sum a = (8.124359226840673e-26,-4.3538164051872454e-26,1.0437169173661484e-25)
    sum e = 2.3987661854517447e-16
    sum de = -1.9259299443872359e-32
Info: cfl dt = 39.62802405243479 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0742e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2855257.9072037395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24084.746262426415, dt = 39.62802405243479 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 270.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.443854249418725e-23,6.056400135068444e-23,-1.560510878028986e-22)
    sum a = (7.819534301954441e-26,1.5230863372352177e-25,8.097140254975665e-26)
    sum e = 2.398779457295586e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.628300345329166 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0647e+04 | 1536 |      1 | 5.012e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2846439.107826363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24124.37428647885, dt = 39.628300345329166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 281.76 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.777157055423142e-23,7.048018138539576e-23,-1.533059823546377e-22)
    sum a = (3.908475519939567e-26,8.409077467590463e-26,7.773597598611739e-26)
    sum e = 2.3987928341832427e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.62859003674972 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0099e+04 | 1536 |      1 | 5.103e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2795569.827698386 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24164.00258682418, dt = 21.24864781191718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 336.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.771866534692913e-23,7.091535852187138e-23,-1.5171830520639672e-22)
    sum a = (3.262660001112804e-26,4.079519507829148e-26,2.249902925657455e-26)
    sum e = 2.398610647365195e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.62875447491961 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3981e+04 | 1536 |      1 | 6.405e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1194301.3201476238 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 644                                                     [SPH][rank=0]
Info: time since start : 69.45645442 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008964730000000001 s
sph::RenderFieldGetter compute custom field took :  0.000809571 s
rho_t_ampl=-0.000894545, rho_t_phi=3.14159 rad
eps_t_ampl=-4.7166e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.59475e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24563.15s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 24185.251234636096, dt = 39.62875447491961 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.92 us    (2.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 338.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.803609659074286e-23,7.207199635616335e-23,-1.5141355191369437e-22)
    sum a = (6.042249994143191e-26,6.322816473603492e-26,1.978704236525133e-26)
    sum e = 2.3988097375934843e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.62906103236099 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2923e+04 | 1536 |      1 | 6.701e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2129071.123008098 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24224.879989111017, dt = 39.62906103236099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 312.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.216270276032136e-23,7.502220919472896e-23,-1.5068314633548168e-22)
    sum a = (-2.118274901751781e-27,-2.741432954346502e-26,1.7361580753636812e-26)
    sum e = 2.3988251679299875e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.62938427981148 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8913e+04 | 1536 |      1 | 5.313e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2685450.6542585683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24264.509050143377, dt = 39.62938427981148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 289.17 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.062845174855499e-23,7.213977630940301e-23,-1.5004317696320826e-22)
    sum a = (-8.447266986254053e-27,7.657502720084424e-26,-2.246199683842544e-27)
    sum e = 2.3988388100828134e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.62972062409935 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0374e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821205.7760614897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24304.13843442319, dt = 39.62972062409935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.5%)
   patch tree reduce : 1.12 us    (0.4%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 290.67 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.946453718790465e-23,7.723491766345179e-23,-1.505207153620609e-22)
    sum a = (-5.977668442260514e-26,2.4323846860795827e-27,5.734055163161423e-26)
    sum e = 2.39885247817646e-16
    sum de = 0
Info: cfl dt = 39.630069940338615 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0397e+04 | 1536 |      1 | 5.053e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823298.1853323774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24343.768155047288, dt = 39.630069940338615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.8%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 269.81 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.623731954246506e-23,7.586218450749195e-23,-1.47067602136718e-22)
    sum a = (6.285076629222052e-26,2.163406306563542e-27,7.050564653536767e-27)
    sum e = 2.3988661690164886e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.63043035890987 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0188e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2803936.458708066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24383.398224987628, dt = 39.63043035890987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 300.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.147493506539161e-23,7.59425812741613e-23,-1.4778468307584546e-22)
    sum a = (2.3481852264541084e-26,-4.169859260317217e-26,-2.1726268170806225e-26)
    sum e = 2.3988798676884087e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.630801436033856 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0350e+04 | 1536 |      1 | 5.061e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2819062.3613671865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24423.028655346538, dt = 39.630801436033856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 293.65 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.142202985808932e-23,7.342087530684857e-23,-1.4921593163026576e-22)
    sum a = (-1.3252134446325167e-26,1.484709065368546e-26,4.837829883737347e-26)
    sum e = 2.3988935591645113e-16
    sum de = 0
Info: cfl dt = 39.631185113347215 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0195e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804664.7213822985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24462.65945678257, dt = 39.631185113347215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 285.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.009939967553211e-23,7.512977622754474e-23,-1.4590949222614304e-22)
    sum a = (2.536763357951523e-26,1.0240174479643797e-26,-1.0426802170380541e-26)
    sum e = 2.3989072284680086e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.63158127692716 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0348e+04 | 1536 |      1 | 5.061e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818900.659011043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24502.290641895917, dt = 39.63158127692716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.2%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 383.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.189817672380992e-23,7.544430937421774e-23,-1.4748798080564247e-22)
    sum a = (1.1108026923820315e-26,5.0356254176419006e-26,3.536732086146205e-26)
    sum e = 2.3989208606116603e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 39.63198980940718 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9656e+04 | 1536 |      1 | 5.179e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2754656.819168628 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24541.922223172845, dt = 21.22356200444119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.1%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 451.02 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.142202985808932e-23,7.730799572575403e-23,-1.4582991352393516e-22)
    sum a = (6.553735885053986e-26,4.1943024947539055e-26,-3.301920612420252e-26)
    sum e = 2.398664593000832e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 39.63221667562077 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0205e+04 | 1536 |      1 | 5.085e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1502467.0508240578 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 654                                                     [SPH][rank=0]
Info: time since start : 70.296923089 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000891884 s
sph::RenderFieldGetter compute custom field took :  0.0008948090000000001 s
rho_t_ampl=-0.0010492, rho_t_phi=3.14159 rad
eps_t_ampl=-4.35087e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.47988e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24941.04s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 24563.145785177287, dt = 39.63221667562077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.94 us    (2.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 344.82 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.496667874734264e-23,7.88809932468418e-23,-1.478642407033824e-22)
    sum a = (8.132109013066593e-26,1.091754035701043e-25,-4.0713823671669014e-26)
    sum e = 2.3989378767460613e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 39.632641003174996 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3743e+04 | 1536 |      1 | 6.469e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2205485.1260621403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24602.77800185291, dt = 39.632641003174996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 301.93 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.867004325850283e-23,8.454010107540004e-23,-1.4963031443576708e-22)
    sum a = (-1.0901365957795751e-26,-5.511298819860257e-26,-9.589039760362079e-26)
    sum e = 2.398953177313254e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.633080319556775 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3934e+04 | 1536 |      1 | 6.418e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2223242.8079173006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24642.410642856084, dt = 39.633080319556775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 330.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.644802455180671e-23,7.910028232806762e-23,-1.5452414293908126e-22)
    sum a = (4.3062978795368526e-26,-2.365364297662431e-26,-1.3727700350700069e-25)
    sum e = 2.398966575599829e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.63353159190412 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3856e+04 | 1536 |      1 | 6.439e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2216016.642882094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24682.04372317564, dt = 39.63353159190412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 328.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.946362136803715e-23,7.878623515757255e-23,-1.6078505473237758e-22)
    sum a = (-5.282770944002917e-26,1.0181475272823716e-25,6.295386458274144e-27)
    sum e = 2.3989798526609687e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.633994658924706 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3566e+04 | 1536 |      1 | 6.518e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2189037.4377511675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24721.677254767546, dt = 39.633994658924706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.5%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 302.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.501958395464494e-23,8.530791598934957e-23,-1.5769040299240723e-22)
    sum a = (4.355379858967686e-26,5.22099591463858e-27,-2.4806771646829065e-26)
    sum e = 2.3989930106500245e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 39.63446938478888 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3959e+04 | 1536 |      1 | 6.411e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2225639.045869564 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24761.31124942647, dt = 39.63446938478888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 309.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.845842242929368e-23,8.360068006178786e-23,-1.5928995760788838e-22)
    sum a = (1.3587958516115083e-26,2.654227992909534e-26,1.6862643812647184e-26)
    sum e = 2.3990060352527784e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.63495563068595 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5932e+04 | 1536 |      1 | 5.923e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2408880.311746908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24800.94571881126, dt = 39.63495563068595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 280.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.914619012422343e-23,8.507517053451959e-23,-1.5779583488290414e-22)
    sum a = (3.2729930494140326e-26,1.3842607863807155e-26,-1.7894745880946208e-26)
    sum e = 2.399018912183875e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.63545325469935 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0634e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2845729.3553402317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24840.580674441946, dt = 39.63545325469935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 280.13 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.083915675789666e-23,8.537214880085208e-23,-1.5919390504594393e-22)
    sum a = (2.8493380690636764e-26,5.1574240801832884e-26,3.751182807426038e-26)
    sum e = 2.3990316273168666e-16
    sum de = 0
Info: cfl dt = 39.63596211185282 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0955e+04 | 1536 |      1 | 4.962e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2875613.5662796525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24880.216127696647, dt = 39.63596211185282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.8%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 272.09 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (61.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.242631297696531e-23,8.816407064121446e-23,-1.566090553136434e-22)
    sum a = (1.2474572561657745e-25,4.1364938069890815e-26,-3.634540830579145e-26)
    sum e = 2.399044166701302e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63648205415939 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0547e+04 | 1536 |      1 | 5.028e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837760.635147474 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24919.8520898085, dt = 21.188245909976104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.6%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 274.30 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (59.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.549481500049803e-23,8.883827298117125e-23,-1.588428520739501e-22)
    sum a = (-7.514709377068208e-26,1.0378236467169545e-26,6.581710989718118e-26)
    sum e = 2.398715655949024e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.636766910025294 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7946e+04 | 1536 |      1 | 5.496e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1387814.8068306935 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 664                                                     [SPH][rank=0]
Info: time since start : 71.198839757 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001012328 s
sph::RenderFieldGetter compute custom field took :  0.000921839 s
rho_t_ampl=-0.00117757, rho_t_phi=3.14159 rad
eps_t_ampl=-3.9475e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-5.20311e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25318.93s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 24941.040335718477, dt = 39.636766910025294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.26 us    (2.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 355.31 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.078625155059436e-23,8.89212602753405e-23,-1.5515175235102944e-22)
    sum a = (-1.2115499133190065e-26,-4.9727870631166827e-26,4.2374535593498555e-26)
    sum e = 2.3990596141489074e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.63729776293326 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0322e+04 | 1536 |      1 | 5.066e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2816897.8000645074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24980.677102628502, dt = 39.63729776293326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 285.96 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.131530362361724e-23,8.575911823065548e-23,-1.5393673419287001e-22)
    sum a = (4.0738042927592177e-26,-1.8044911785794805e-26,5.795675031769579e-26)
    sum e = 2.3990732633625324e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.637829097698855 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0585e+04 | 1536 |      1 | 5.022e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841379.9574624104 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25020.314400391435, dt = 39.637829097698855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 287.11 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.496576292747515e-23,8.567185563775161e-23,-1.5133063598630294e-22)
    sum a = (3.4874038016645175e-26,-4.655967880870053e-26,-6.945453785532855e-26)
    sum e = 2.399085094059596e-16
    sum de = 1.0400021699691074e-32
Info: cfl dt = 39.638371024541506 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0759e+04 | 1536 |      1 | 4.994e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2857583.6882221927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25059.952229489132, dt = 39.638371024541506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 299.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.560062541510261e-23,8.326103276412649e-23,-1.5660885416000937e-22)
    sum a = (9.534820319958322e-26,6.923035777035119e-26,6.122988945476368e-26)
    sum e = 2.3990966667065416e-16
    sum de = 3.4666738998970245e-33
Info: cfl dt = 39.63892335533997 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0812e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2862476.175910334 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25099.590600513675, dt = 39.63892335533997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.4%)
   patch tree reduce : 1.07 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 22.54 us   (6.9%)
   LB compute        : 286.96 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.094405135263374e-23,8.830031511214374e-23,-1.515917083564326e-22)
    sum a = (-1.2141331753943135e-27,-2.87569100017127e-26,-2.0089649383462483e-26)
    sum e = 2.399107990151256e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.63948593100282 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1115e+04 | 1536 |      1 | 4.937e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2890680.1833273834 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25139.229523869013, dt = 39.63948593100282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 301.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.88278430605422e-23,8.521834460596588e-23,-1.5399976121417727e-22)
    sum a = (1.4207941414188777e-26,-4.2166840388282455e-26,-7.202890805806351e-26)
    sum e = 2.399119052064832e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.64005858986244 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0688e+04 | 1536 |      1 | 5.005e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2851058.1002647113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25178.869009800015, dt = 39.64005858986244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 292.88 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.964787377372767e-23,8.328101429627899e-23,-1.5788441410651384e-22)
    sum a = (-1.2115499133190065e-26,4.4448164788161463e-26,-1.5592851277791198e-26)
    sum e = 2.39912984030462e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.640641167607136 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0879e+04 | 1536 |      1 | 4.974e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2868850.8248125874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25218.509068389878, dt = 39.640641167607136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 268.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.37 us   (95.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.877493785323991e-23,8.675965115227544e-23,-1.573839604301208e-22)
    sum a = (4.745452432339051e-26,-6.27852261079271e-26,-2.399368107465521e-26)
    sum e = 2.399140343026361e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.64123349733167 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0574e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840527.649241945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25258.149709557485, dt = 39.64123349733167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 277.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.118212478549403e-23,8.214548655675867e-23,-1.5850160668380543e-22)
    sum a = (-1.294214299728832e-25,-3.4181608996845285e-26,-3.603687009723597e-26)
    sum e = 2.3991505486980636e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.64183540959071 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0679e+04 | 1536 |      1 | 5.007e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850384.470361959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25297.790943054817, dt = 21.143943204846437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 304.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.557417281145147e-23,8.198957377420352e-23,-1.5950227165247008e-22)
    sum a = (-2.978501172829029e-26,1.5375265578052501e-26,-1.3842892282820968e-26)
    sum e = 2.398758728153669e-16
    sum de = -4.237045877651919e-33
Info: cfl dt = 39.64216202266445 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0729e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1522805.7376056523 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 674                                                     [SPH][rank=0]
Info: time since start : 72.01445963900001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001073011 s
sph::RenderFieldGetter compute custom field took :  0.0009451030000000001 s
rho_t_ampl=-0.00127646, rho_t_phi=3.14159 rad
eps_t_ampl=-3.51659e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-3.79637e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25696.83s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 25318.934886259663, dt = 39.64216202266445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.78 us    (2.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 342.84 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.536255198224231e-23,8.312318021255533e-23,-1.5981639972800806e-22)
    sum a = (1.2502988444486122e-26,1.6435272735569467e-25,-5.294587262088605e-26)
    sum e = 2.3991629051396313e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.642776683687444 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0572e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840484.7652638075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25358.577048282328, dt = 39.642776683687444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 320.74 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.687035039035753e-23,9.259172048581645e-23,-1.6269038447370744e-22)
    sum a = (-2.2965199849479674e-26,1.3426462380900814e-25,1.4320414369224707e-26)
    sum e = 2.399173543087548e-16
    sum de = 4.237045877651919e-33
Info: cfl dt = 39.643402062739405 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0639e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2846767.529456662 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25398.219824966014, dt = 39.643402062739405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 286.38 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.485995251287057e-23,9.731788886676334e-23,-1.6078936333241847e-22)
    sum a = (4.174551513696193e-26,-1.1662812096415732e-25,2.1303221273672107e-26)
    sum e = 2.399182637653964e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.64403644078416 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1054e+04 | 1536 |      1 | 4.946e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2885318.6373753133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25437.863227028753, dt = 39.64403644078416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.6%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 278.28 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.76374758962407e-23,8.77212058782566e-23,-1.5980640654111958e-22)
    sum a = (4.13321932049128e-28,3.162231903859937e-26,-3.433258105222655e-26)
    sum e = 2.399191361262093e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.644679602893014 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0844e+04 | 1536 |      1 | 4.980e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2865893.52181964 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 25477.507263469535, dt = 39.644679602893014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 281.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.74523076706827e-23,9.191345273716864e-23,-1.6227032460428554e-22)
    sum a = (-4.0815540789851394e-27,-2.675095906861624e-26,-7.021025729274727e-26)
    sum e = 2.399199730137178e-16
    sum de = -1.1555579666323415e-33
Info: cfl dt = 39.64533136648278 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1054e+04 | 1536 |      1 | 4.946e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2885449.0121907243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25517.15194307243, dt = 39.64533136648278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 281.18 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.67909925794041e-23,8.969592890648357e-23,-1.6576501300970667e-22)
    sum a = (9.415990264494197e-26,3.371484961468855e-27,-3.3987828299088696e-26)
    sum e = 2.3992077351565587e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.64599154685034 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0578e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841235.972892484 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25556.79727443891, dt = 39.64599154685034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.7%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 272.97 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.255766017535353e-23,9.042674666389831e-23,-1.6639446906297205e-22)
    sum a = (-1.2019918436403704e-25,-8.006024885241585e-27,1.138802331331594e-25)
    sum e = 2.399215367521684e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.646659957190664 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1242e+04 | 1536 |      1 | 4.917e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2902977.589237932 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25596.443265985763, dt = 39.646659957190664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 301.53 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.356377493396451e-23,8.988419058837676e-23,-1.589483102273001e-22)
    sum a = (9.041417263574675e-27,5.056915255990568e-26,1.1807474167346594e-26)
    sum e = 2.3992226188459274e-16
    sum de = 5.7777898331617076e-34
Info: cfl dt = 39.6473364086342 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0758e+04 | 1536 |      1 | 4.994e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2858081.5880202767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25636.089925942953, dt = 39.6473364086342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 280.43 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.65529191465438e-23,9.304985555671697e-23,-1.6050359730965557e-22)
    sum a = (3.851643754282812e-26,1.6459781560644786e-26,5.993301923889035e-26)
    sum e = 2.399229481158576e-16
    sum de = 4.237045877651919e-33
Info: cfl dt = 39.648020710304934 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1306e+04 | 1536 |      1 | 4.906e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2909066.29148624 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 25675.737262351588, dt = 21.092174449266167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 311.79 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.7875549329101e-23,9.272086421511624e-23,-1.5828545477494832e-22)
    sum a = (8.06494419910861e-26,1.8035735403178665e-26,1.0834964053348166e-25)
    sum e = 2.398789541492465e-16
    sum de = 3.4666738998970245e-33
Info: cfl dt = 39.64838887996938 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1753e+04 | 1536 |      1 | 4.837e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1569716.257564002 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 684                                                     [SPH][rank=0]
Info: time since start : 72.825851213 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000990879 s
sph::RenderFieldGetter compute custom field took :  0.000868901 s
rho_t_ampl=-0.00134339, rho_t_phi=3.14159 rad
eps_t_ampl=-3.06892e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.29485e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26074.72s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 25696.829436800854, dt = 39.64838887996938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.2%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 371.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.180376097129592e-23,9.34522761228083e-23,-1.5347896018077938e-22)
    sum a = (5.975085180185206e-26,-4.4329817832978024e-26,-2.8360771489012337e-26)
    sum e = 2.3992375373759184e-16
    sum de = 4.237045877651919e-33
Info: cfl dt = 39.64908393766052 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0799e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2862029.0534800654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25736.477825680824, dt = 39.64908393766052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.5%)
   patch tree reduce : 24.88 us   (7.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 297.40 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.358931171774816e-23,9.045855307820053e-23,-1.5731361257998559e-22)
    sum a = (-1.1826173780755674e-25,-6.888002807855637e-26,-3.255240854627606e-26)
    sum e = 2.399244101388603e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.64978721345328 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1008e+04 | 1536 |      1 | 4.954e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2881532.17750103 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 25776.126909618484, dt = 39.64978721345328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (0.5%)
   patch tree reduce : 1.33 us    (0.1%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.1%)
   LB compute        : 1.04 ms    (98.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.52699678694633e-23,8.724069329962874e-23,-1.5868740593688993e-22)
    sum a = (-3.585567760526185e-26,7.124001079045499e-27,1.973702288077927e-27)
    sum e = 2.3992495614196353e-16
    sum de = -2.5037089277034066e-33
Info: cfl dt = 39.65049768657088 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0613e+04 | 1536 |      1 | 5.017e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2844864.9198795087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25815.776696831937, dt = 39.65049768657088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 275.56 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.536255198224231e-23,8.902990582007272e-23,-1.579246711849415e-22)
    sum a = (5.610845227566913e-26,-1.8752414038895442e-26,-4.216321862770826e-26)
    sum e = 2.3992545726609945e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.651215121329706 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1121e+04 | 1536 |      1 | 4.936e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2892102.424113355 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25855.42719451851, dt = 39.651215121329706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.7%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 273.22 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.954206335912309e-23,8.777333610693629e-23,-1.60471519477284e-22)
    sum a = (2.1828564536344573e-26,-3.9533748347992495e-26,2.817310357006128e-27)
    sum e = 2.399259158681431e-16
    sum de = 1.925929944387236e-34
Info: cfl dt = 39.65193931679495 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1186e+04 | 1536 |      1 | 4.925e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2898193.689984458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25895.07840963984, dt = 39.65193931679495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 298.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.978013679198339e-23,8.579371133892143e-23,-1.5946804134244954e-22)
    sum a = (-2.4153500404120917e-26,-2.514981589813125e-26,1.9287455281412856e-26)
    sum e = 2.3992633144694894e-16
    sum de = -2.6000054249227684e-33
Info: cfl dt = 39.652670070429956 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1686e+04 | 1536 |      1 | 4.848e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2944699.6109874006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25934.730348956633, dt = 39.652670070429956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 282.68 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.773006000901971e-23,8.508155765000079e-23,-1.583767056481389e-22)
    sum a = (1.2686400051832923e-25,-7.461813049729304e-26,-9.759761806590846e-26)
    sum e = 2.3992670354546295e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.65340199336273 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1917e+04 | 1536 |      1 | 4.812e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2966276.251430109 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25974.383019027064, dt = 39.65340199336273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.5%)
   patch tree reduce : 1.29 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 264.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.58906882353977e-23,8.114179236817407e-23,-1.6456418585569966e-22)
    sum a = (-8.762424959441513e-26,-5.936390487468316e-26,5.194385730383567e-26)
    sum e = 2.399270317370538e-16
    sum de = -2.8888949165808538e-34
Info: cfl dt = 39.6541183602335 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1916e+04 | 1536 |      1 | 4.813e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2966168.5938723725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26014.036421020428, dt = 39.6541183602335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 274.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.809378330922295e-23,7.909012042087888e-23,-1.5953948387132877e-22)
    sum a = (-8.292271261735631e-27,5.915747095317693e-26,3.250585385405019e-26)
    sum e = 2.3992731560559094e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.65484071477662 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2003e+04 | 1536 |      1 | 4.800e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2974337.7211788725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26053.690539380663, dt = 21.033447961377533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 279.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.954206335912309e-23,8.268501375749693e-23,-1.5924117213058964e-22)
    sum a = (-1.2949892783514241e-25,1.3729613483143524e-25,1.8233374704457543e-26)
    sum e = 2.398805074225389e-16
    sum de = 1.4444474582904269e-33
Info: cfl dt = 39.655226494997436 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1693e+04 | 1536 |      1 | 4.847e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1562363.2431199157 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 694                                                     [SPH][rank=0]
Info: time since start : 73.629750028 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010311130000000002 s
sph::RenderFieldGetter compute custom field took :  0.0009673850000000001 s
rho_t_ampl=-0.00137669, rho_t_phi=3.14159 rad
eps_t_ampl=-2.61571e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.36101e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26452.62s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 26074.72398734204, dt = 39.655226494997436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.58 us    (2.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 346.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.308101491733113e-23,8.895081925163719e-23,-1.5866822325065696e-22)
    sum a = (-7.057471989738861e-26,-8.511383727553356e-26,1.8506844469213677e-26)
    sum e = 2.3992761321341235e-16
    sum de = 6.2592723192585165e-34
Info: cfl dt = 39.65595745080327 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1727e+04 | 1536 |      1 | 4.841e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2948742.928478216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26114.379213837037, dt = 39.65595745080327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 279.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.14806323964369e-23,8.116562941897395e-23,-1.5792889436110317e-22)
    sum a = (-7.155635948600529e-27,-9.106847709684246e-26,-2.925223117322896e-26)
    sum e = 2.399277960421091e-16
    sum de = -4.81482486096809e-35
Info: cfl dt = 39.65649969765398 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2001e+04 | 1536 |      1 | 4.800e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2974316.1532458947 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26154.03517128784, dt = 39.65649969765398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 276.45 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.245276558061645e-23,7.743626437502581e-23,-1.6003590139356445e-22)
    sum a = (1.2012168650177782e-26,5.826434088595882e-26,-1.0649227518126723e-25)
    sum e = 2.3992792396868675e-16
    sum de = 3.3703774026776627e-34
Info: cfl dt = 39.65663841920375 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1865e+04 | 1536 |      1 | 4.820e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2961674.5475059524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26193.691670985492, dt = 39.65663841920375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.4%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 289.65 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.334802088543486e-23,8.270806937151905e-23,-1.6579056193578752e-22)
    sum a = (1.2490072134109586e-25,-9.560277686576917e-26,-1.0152198907071219e-25)
    sum e = 2.3992800214973536e-16
    sum de = 6.770847460736376e-35
Info: cfl dt = 39.6565933846819 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1917e+04 | 1536 |      1 | 4.812e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2966538.527638694 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26233.348309404697, dt = 39.6565933846819 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.5%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 333.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.052742284512821e-23,7.586617060196456e-23,-1.6971802575640821e-22)
    sum a = (-1.6067890108409853e-26,2.898718359764437e-26,3.64063314295842e-26)
    sum e = 2.3992803434088073e-16
    sum de = -1.8055593228630336e-34
Info: cfl dt = 39.656553407858965 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1575e+04 | 1536 |      1 | 4.865e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2934730.67859235 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 26273.00490278938, dt = 39.656553407858965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 300.62 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.708031793183848e-23,7.948530785315936e-23,-1.6553939246853354e-22)
    sum a = (1.082386809553654e-26,-9.160015229086721e-26,-1.7527363601052247e-26)
    sum e = 2.399280211328466e-16
    sum de = -4.81482486096809e-35
Info: cfl dt = 39.656440061563735 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0945e+04 | 1536 |      1 | 4.964e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2876142.68984038 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 26312.66145619724, dt = 39.656440061563735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 304.66 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.81136227619613e-23,7.346200608633855e-23,-1.6730387754134523e-22)
    sum a = (-2.531596833800909e-27,-1.3909333725029688e-26,4.119003066180487e-27)
    sum e = 2.399279622521768e-16
    sum de = 8.666684749742561e-34
Info: cfl dt = 39.65617206031019 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0397e+04 | 1536 |      1 | 5.053e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825258.8701795083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26352.317896258803, dt = 39.65617206031019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (1.2%)
   patch tree reduce : 861.00 ns  (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 290.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.77366731599325e-23,7.445047840314441e-23,-1.6671132472588925e-22)
    sum a = (-1.6222885832928273e-26,-1.0644975935463092e-26,3.214106050082066e-27)
    sum e = 2.3992785753297796e-16
    sum de = -4.81482486096809e-34
Info: cfl dt = 39.65547920250346 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1099e+04 | 1536 |      1 | 4.939e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2890491.504223475 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26391.974068319112, dt = 39.65547920250346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (1.4%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 721.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.3%)
   LB compute        : 259.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.684389778670638e-23,7.409278701988702e-23,-1.666018101861526e-22)
    sum a = (-1.9400298185555945e-26,7.435314431722444e-26,1.3256289343088982e-25)
    sum e = 2.399277062071739e-16
    sum de = -1.1555579666323415e-33
Info: cfl dt = 39.654749451939594 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0966e+04 | 1536 |      1 | 4.960e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2878051.5273219957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26431.629547521614, dt = 20.98899036162038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.8%)
   patch tree reduce : 3.27 us    (1.1%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.6%)
   LB compute        : 270.33 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.630161941185793e-23,7.733930163302916e-23,-1.6125475481969542e-22)
    sum a = (3.4279887739324555e-26,-1.8330336387268313e-25,-4.0984387272455173e-26)
    sum e = 2.3988042197493378e-16
    sum de = -9.62964972193618e-34
Info: cfl dt = 39.65436617582687 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0875e+04 | 1536 |      1 | 4.975e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1518820.7901406526 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 704                                                     [SPH][rank=0]
Info: time since start : 74.432943015 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001017949 s
sph::RenderFieldGetter compute custom field took :  0.000977915 s
rho_t_ampl=-0.00137554, rho_t_phi=3.14159 rad
eps_t_ampl=-2.16828e-07, eps_t_phi=6.28319 rad
vx_t_ampl=8.40914e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26830.51s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 26452.618537883234, dt = 39.65436617582687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.66 us    (2.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 349.32 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.827895153478095e-23,6.736719962527324e-23,-1.6470125582107685e-22)
    sum a = (2.645260365114419e-26,-3.270128504407674e-26,-4.382555070234122e-26)
    sum e = 2.399274611711067e-16
    sum de = -5.7777898331617076e-34
Info: cfl dt = 39.65362580228042 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3883e+04 | 1536 |      1 | 6.431e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2219725.386621828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26492.27290405906, dt = 39.65362580228042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.1%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 323.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.911882170070479e-23,6.905613637010898e-23,-1.6649543007671332e-22)
    sum a = (5.156191102312872e-26,4.877448547149882e-26,-7.522938991354232e-27)
    sum e = 2.399271464453099e-16
    sum de = 8.666684749742561e-34
Info: cfl dt = 39.65288644326965 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3704e+04 | 1536 |      1 | 6.480e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2203030.785276401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26531.92652986134, dt = 39.65288644326965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 328.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.171117685851691e-23,7.260538346585635e-23,-1.6607397123203747e-22)
    sum a = (3.61656690542987e-28,6.38263009060108e-26,1.5903120754567404e-26)
    sum e = 2.3992684033440214e-16
    sum de = -2.5037089277034066e-33
Info: cfl dt = 39.652153890167135 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4446e+04 | 1536 |      1 | 6.283e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2271938.3044751654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26571.57941630461, dt = 39.652153890167135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 301.83 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.069275161794787e-23,7.543504999421656e-23,-1.6497892279708873e-22)
    sum a = (-6.499487381472538e-26,5.867100284547005e-26,1.7243541523663112e-26)
    sum e = 2.399264871061947e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.65142837576884 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5222e+04 | 1536 |      1 | 6.090e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2343956.2170759556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26611.231570194777, dt = 39.65142837576884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 295.46 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.693648189948539e-23,7.766012986647192e-23,-1.6426861646011224e-22)
    sum a = (2.5315968338009092e-26,7.139358117994163e-26,8.036530982210604e-27)
    sum e = 2.399260903004427e-16
    sum de = -5.7777898331617076e-34
Info: cfl dt = 39.65071009366796 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0741e+04 | 1536 |      1 | 4.997e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856899.3586031226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26650.882998570545, dt = 39.65071009366796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.3%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 322.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.966110007555324e-23,8.074234901162452e-23,-1.6413249785949683e-22)
    sum a = (1.4259606655694916e-26,-1.0310224020343102e-25,2.915556317966343e-26)
    sum e = 2.3992565036335484e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.64999923518202 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1840e+04 | 1536 |      1 | 4.824e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2958895.723931322 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26690.533708664214, dt = 39.64999923518202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.5%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 287.98 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.991239981023911e-23,7.319457387999239e-23,-1.6255778749016074e-22)
    sum a = (4.239133065578869e-26,1.3023391508854625e-25,8.566394859532273e-27)
    sum e = 2.399251677890579e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 39.649295989262136 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1240e+04 | 1536 |      1 | 4.917e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2903128.91256638 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 26730.183707899396, dt = 39.649295989262136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 266.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.208151330963293e-23,8.298415550581748e-23,-1.626263162188892e-22)
    sum a = (-1.955529391007437e-26,6.467790074674966e-26,1.4186770147887758e-26)
    sum e = 2.3992464311909677e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 39.648600542479656 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1161e+04 | 1536 |      1 | 4.929e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2895697.7201715456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26769.83300388866, dt = 39.648600542479656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.4%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 315.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.02033784504017e-23,8.424906269730196e-23,-1.619524086746155e-22)
    sum a = (5.290520730228839e-26,1.114659737273134e-25,4.645111917664106e-26)
    sum e = 2.399240769409855e-16
    sum de = -4.044452883213195e-33
Info: cfl dt = 39.6479130789668 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1129e+04 | 1536 |      1 | 4.934e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2892692.557353023 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26809.48160443114, dt = 21.031483993279835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 272.93 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.266347058995811e-23,8.752064786888495e-23,-1.6033585456198202e-22)
    sum a = (4.959863184589536e-26,7.324401923156123e-26,8.523189887290507e-26)
    sum e = 2.3987883506204606e-16
    sum de = -9.62964972193618e-34
Info: cfl dt = 39.647552891541245 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6669e+04 | 1536 |      1 | 5.759e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1314603.7517285408 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 714                                                     [SPH][rank=0]
Info: time since start : 75.295973629 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001070858 s
sph::RenderFieldGetter compute custom field took :  0.0009961780000000001 s
rho_t_ampl=-0.00133996, rho_t_phi=3.14159 rad
eps_t_ampl=-1.73783e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.39675e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27208.41s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 26830.51308842442, dt = 39.647552891541245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.06 us    (2.2%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.464741586379392e-23,9.002349299578769e-23,-1.565488096696571e-22)
    sum a = (-6.71648139579833e-26,-1.3712056635083857e-25,-3.79231183186435e-27)
    sum e = 2.399233217211134e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.64687672284358 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0462e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830669.9431577832 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26870.16064131596, dt = 39.64687672284358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 319.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.983304199928568e-23,8.041614759306512e-23,-1.58463959040625e-22)
    sum a = (-4.06347124445799e-26,1.9506498259008326e-26,-4.4839785046447247e-26)
    sum e = 2.3992254589896626e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.64621030239263 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0531e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837002.052451361 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26909.807518038804, dt = 39.64621030239263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 285.70 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.880139045689105e-23,8.429470893817264e-23,-1.6105538864364984e-22)
    sum a = (5.897587317925995e-26,1.0367278415763672e-25,9.919603860835264e-27)
    sum e = 2.3992184153731983e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.64555245950314 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0934e+04 | 1536 |      1 | 4.965e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874441.4445667146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26949.453728341196, dt = 39.64555245950314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 284.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.274282840091154e-23,9.007254914259777e-23,-1.5957661934408304e-22)
    sum a = (-4.458710341979968e-26,1.5041850702873834e-26,-6.377301300113012e-26)
    sum e = 2.3992109588325833e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.644903402563415 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0726e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2854993.847276367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26989.0992808007, dt = 39.644903402563415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 23.19 us   (7.2%)
   LB compute        : 282.16 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.933044252991393e-23,8.891210906943871e-23,-1.635656865380425e-22)
    sum a = (-3.740563485044609e-26,6.58075733613224e-26,-7.059428489322033e-27)
    sum e = 2.3992031278104935e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.64426330138022 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0889e+04 | 1536 |      1 | 4.973e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870152.121916752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27028.744184203264, dt = 39.64426330138022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.7%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 272.33 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.819298057291474e-23,9.252719059917528e-23,-1.6272135009003854e-22)
    sum a = (-3.2962424080917957e-26,-7.375247912358597e-26,2.2146055769324365e-26)
    sum e = 2.3991949309336934e-16
    sum de = 3.851859888774472e-34
Info: cfl dt = 39.64363232318647 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0651e+04 | 1536 |      1 | 5.011e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2847975.9928608867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27068.388447504643, dt = 39.64363232318647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 295.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.644710873193922e-23,8.683691006279268e-23,-1.612644850438127e-22)
    sum a = (8.7572584352909e-27,-1.8462534950107994e-26,-1.0706535644176852e-25)
    sum e = 2.3991863773148607e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.64301063248362 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0777e+04 | 1536 |      1 | 4.991e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859646.1136172637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27108.03207982783, dt = 39.64301063248362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.8%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 275.91 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.7875549329101e-23,8.720067211192704e-23,-1.6807008296643605e-22)
    sum a = (-1.3536293274608943e-26,-4.9232718070633545e-26,-9.237529938138218e-27)
    sum e = 2.3991774764556217e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.642398391009706 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0501e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833994.48250527 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 27147.675090460314, dt = 39.642398391009706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 305.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.69761608049621e-23,8.463962609046763e-23,-1.664971860252701e-22)
    sum a = (8.651344690203311e-26,-3.9632531633845847e-26,-4.128958153161499e-26)
    sum e = 2.3991682382377057e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 39.64179575770528 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0767e+04 | 1536 |      1 | 4.992e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2858635.4869085173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27187.317488851324, dt = 21.0901501142871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.7%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 271.30 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.017692584675056e-23,8.399410764677953e-23,-1.680032995971907e-22)
    sum a = (8.550597469266336e-27,-1.2108410298784193e-26,-5.448473261489745e-27)
    sum e = 2.398757779816611e-16
    sum de = -1.1555579666323415e-33
Info: cfl dt = 39.64148096173923 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0310e+04 | 1536 |      1 | 5.068e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1498201.652067807 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 724                                                     [SPH][rank=0]
Info: time since start : 76.277737317 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001064436 s
sph::RenderFieldGetter compute custom field took :  0.001009113 s
rho_t_ampl=-0.00127085, rho_t_phi=3.14159 rad
eps_t_ampl=-1.33512e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.89252e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27586.30s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 27208.40763896561, dt = 39.64148096173923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.66 us    (1.7%)
   patch tree reduce : 1.69 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 498.21 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.993885241389026e-23,8.380347582193225e-23,-1.6784133796941534e-22)
    sum a = (-7.186635093504214e-26,-7.128294112479731e-26,-2.6016931605622443e-26)
    sum e = 2.3991563305967104e-16
    sum de = -2.6963019221421302e-33
Info: cfl dt = 39.64089141378083 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9429e+04 | 1536 |      1 | 5.219e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2734267.9267923436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27248.04911992735, dt = 39.64089141378083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 314.51 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.51773837566843e-23,7.980596817456722e-23,-1.6928035440504533e-22)
    sum a = (-8.524764848513265e-28,8.115432593194702e-26,8.239431652448509e-28)
    sum e = 2.399144734187369e-16
    sum de = -5.007417855406813e-33
Info: cfl dt = 39.64031383397665 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9799e+04 | 1536 |      1 | 5.155e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2768535.0965704527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27287.69001134113, dt = 39.64031383397665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 307.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.742585506703156e-23,8.604387443829417e-23,-1.6871569493826936e-22)
    sum a = (1.237382534072077e-25,4.165602175598388e-26,6.774745225666852e-26)
    sum e = 2.399134416002457e-16
    sum de = -2.6963019221421302e-33
Info: cfl dt = 39.639746367327085 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9749e+04 | 1536 |      1 | 5.163e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2763896.8522557514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27327.330325175106, dt = 39.639746367327085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 302.57 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.438288982728248e-23,8.691271588839256e-23,-1.647037686621587e-22)
    sum a = (1.1423184897007776e-25,1.8696978597026463e-25,1.3295461419496204e-26)
    sum e = 2.3991237824086025e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.6391891933998 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1172e+04 | 1536 |      1 | 4.928e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2896023.8497803733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27366.970071542433, dt = 39.6391891933998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 291.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.861530641146555e-23,9.720334702634422e-23,-1.6525597890452638e-22)
    sum a = (5.479098861726254e-26,5.847342366017899e-26,4.9827011136946394e-26)
    sum e = 2.39911287258754e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.63864245494506 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1119e+04 | 1536 |      1 | 4.936e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2891071.981438593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27406.609260735833, dt = 39.63864245494506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 279.56 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.97792209721159e-23,9.697454750433428e-23,-1.6255686332008204e-22)
    sum a = (1.0123804073128329e-25,-4.5676948641780727e-26,2.312881176057752e-27)
    sum e = 2.399101698505962e-16
    sum de = 5.7777898331617076e-33
Info: cfl dt = 39.63810629187564 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2492e+04 | 1536 |      1 | 6.829e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2089575.4712977777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27446.24790319078, dt = 39.63810629187564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 382.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0491102608043787e-22,9.309942189778693e-23,-1.6340688289471902e-22)
    sum a = (3.611400381279256e-26,-2.820101672573195e-26,-8.540706113539931e-27)
    sum e = 2.3990902725337685e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.63758084108327 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6429e+04 | 1536 |      1 | 5.812e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2455335.754707292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27485.886009482656, dt = 39.63758084108327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 316.12 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0496393128774015e-22,9.232707820251162e-23,-1.639605236470549e-22)
    sum a = (1.6548376854416962e-25,3.9764967962750565e-26,2.8907520383488163e-26)
    sum e = 2.39907860731439e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.63706623641529 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4707e+04 | 1536 |      1 | 6.217e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2295295.746760265 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27525.52359032374, dt = 39.63706623641529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 327.53 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.138520061145246e-22,9.524960008616874e-23,-1.6207253579431846e-22)
    sum a = (5.34218597173498e-26,-5.544400018596216e-26,-7.777386370888878e-26)
    sum e = 2.399066715751629e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.63656260865032 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9199e+04 | 1536 |      1 | 5.260e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2712596.6281252713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27565.160656560158, dt = 21.141532946643565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.3%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 325.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1305842800499028e-22,9.218939033389776e-23,-1.6583106304003854e-22)
    sum a = (3.247160428660962e-26,-1.409033866048211e-26,-2.503465530329087e-26)
    sum e = 2.3987151766471595e-16
    sum de = 0
Info: cfl dt = 39.636296341907446 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9285e+04 | 1536 |      1 | 5.245e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1451104.699914318 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 734                                                     [SPH][rank=0]
Info: time since start : 77.14128735700001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00105634 s
sph::RenderFieldGetter compute custom field took :  0.0009480690000000001 s
rho_t_ampl=-0.00116994, rho_t_phi=3.14159 rad
eps_t_ampl=-9.70224e-08, eps_t_phi=6.28319 rad
vx_t_ampl=5.2908e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27964.20s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 27586.3021895068, dt = 39.636296341907446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.04 us    (2.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 355.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1443396339484977e-22,9.206795118373757e-23,-1.662658502004146e-22)
    sum a = (1.136635313135102e-27,1.405320426814957e-26,-1.09835466857003e-26)
    sum e = 2.3990516360840856e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 39.63579285310728 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6163e+04 | 1536 |      1 | 5.871e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2430523.147364861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27625.93848584871, dt = 39.63579285310728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.3%)
   LB compute        : 303.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.13005522797688e-22,9.318324875213064e-23,-1.664227248290901e-22)
    sum a = (6.943808458425351e-26,-1.5478129358443755e-27,-2.2651097262980213e-26)
    sum e = 2.3990373517326376e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 39.6353032989404 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3814e+04 | 1536 |      1 | 6.450e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2212268.233176002 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27665.574278701817, dt = 39.6353032989404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 305.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1787280186949852e-22,9.28123181507373e-23,-1.6755173424805444e-22)
    sum a = (5.791673572838406e-26,-3.62372196115359e-26,-4.353998204364023e-26)
    sum e = 2.3990247902183344e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 39.63482515501205 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3834e+04 | 1536 |      1 | 6.444e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2214106.35108745 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 27705.209582000756, dt = 39.63482515501205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 302.96 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.197773893323809e-22,9.068872172911038e-23,-1.6969140246553797e-22)
    sum a = (-4.280465258783782e-26,2.680699491710038e-26,5.662530591121089e-26)
    sum e = 2.399012040377091e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.63435857247404 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3695e+04 | 1536 |      1 | 6.482e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2201155.9020913616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27744.844407155768, dt = 39.63435857247404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.27 us   (3.4%)
   patch tree reduce : 3.89 us    (1.1%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 330.74 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1623274044312758e-22,9.300099961271772e-23,-1.6546207794942862e-22)
    sum a = (-1.8780315287482254e-26,-1.728278009886529e-26,-3.5391451479644765e-26)
    sum e = 2.398999139816786e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 39.63390366777069 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3821e+04 | 1536 |      1 | 6.448e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2212792.779176244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27784.478765728243, dt = 39.63390366777069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 316.79 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1586240399201157e-22,9.144143263261335e-23,-1.6868829190659153e-22)
    sum a = (-5.396434475316427e-26,3.695509023097396e-27,-2.329899513169296e-26)
    sum e = 2.398986102657545e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.63346055431147 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3781e+04 | 1536 |      1 | 6.459e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2209080.058568801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27824.112669396014, dt = 39.63346055431147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 291.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1295261759038571e-22,9.200321463613037e-23,-1.6937207608609574e-22)
    sum a = (6.553735885053986e-26,9.810719773208352e-28,-7.726606780003937e-26)
    sum e = 2.3989729433020696e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 39.633029342262105 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3768e+04 | 1536 |      1 | 6.462e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2207860.791628844 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27863.746129950327, dt = 39.633029342262105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 327.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1744956021108023e-22,9.198797338988607e-23,-1.7350381534128895e-22)
    sum a = (-1.144643425568554e-25,7.550544570212483e-26,3.6199181779738604e-26)
    sum e = 2.398959676282635e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.63261013852972 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3675e+04 | 1536 |      1 | 6.488e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2199209.4874412823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27903.379159292588, dt = 39.63261013852972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 309.63 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0961958953034154e-22,9.645662929085597e-23,-1.698206614995176e-22)
    sum a = (-7.646455742908868e-27,6.438389701587907e-27,1.753801913264327e-25)
    sum e = 2.398946316248272e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.632203046747335 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3616e+04 | 1536 |      1 | 6.504e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2193687.4814174995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27943.01176943112, dt = 21.184970616868668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 294.26 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1136546137131704e-22,9.522374163279493e-23,-1.633471839544653e-22)
    sum a = (-4.0066394788012346e-26,-2.5147526532571344e-26,1.910296973413402e-26)
    sum e = 2.398664845605796e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.631993494728555 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3944e+04 | 1536 |      1 | 6.415e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1188874.2475854428 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 744                                                     [SPH][rank=0]
Info: time since start : 78.102393547 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009319490000000001 s
sph::RenderFieldGetter compute custom field took :  0.000851167 s
rho_t_ampl=-0.00103976, rho_t_phi=3.14159 rad
eps_t_ampl=-6.52265e-08, eps_t_phi=6.28319 rad
vx_t_ampl=6.55665e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28342.09s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 27964.196740047988, dt = 39.631993494728555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.44 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 334.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0951377911573695e-22,9.389243168966468e-23,-1.6424545935598898e-22)
    sum a = (6.019000635465427e-26,7.173839873537458e-26,8.091543680389787e-26)
    sum e = 2.398929567672914e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 39.631602056128855 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3259e+04 | 1536 |      1 | 6.604e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2160461.687267426 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28003.828733542716, dt = 39.631602056128855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 304.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1379910090722232e-22,9.865506281480452e-23,-1.5981377531797807e-22)
    sum a = (-1.2691566575983537e-25,6.45148575554146e-26,-2.4577128967153094e-26)
    sum e = 2.398914010801765e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.63122613236996 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2934e+04 | 1536 |      1 | 6.697e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2130294.4811654342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28043.460335598844, dt = 39.63122613236996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 359.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0528136253155389e-22,1.0106940538300724e-22,-1.6287821676702001e-22)
    sum a = (-3.322075028844866e-26,6.633618976114177e-26,2.333606119694095e-26)
    sum e = 2.3989004593316223e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 39.63086263281145 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3468e+04 | 1536 |      1 | 6.545e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2179878.5757212304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28083.091561731213, dt = 39.63086263281145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.7%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 294.78 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0538717294615846e-22,1.0373311023933936e-22,-1.610039592942724e-22)
    sum a = (9.609734920142227e-27,-5.371185863518859e-26,-1.2715520462081688e-25)
    sum e = 2.398886863562529e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.63051167387928 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3850e+04 | 1536 |      1 | 6.440e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2215305.4554943927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28122.722424364023, dt = 39.63051167387928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 292.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.075562864455523e-22,9.922671287944923e-23,-1.6902523445692363e-22)
    sum a = (2.6349273168131912e-27,-6.575386787254732e-26,-2.308699449097582e-26)
    sum e = 2.398873257372862e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.630173340624694 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5263e+04 | 1536 |      1 | 6.080e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2346508.1409706646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28162.352936037903, dt = 39.630173340624694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 291.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (58.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0681561354332025e-22,9.638184385377583e-23,-1.678780378423019e-22)
    sum a = (5.25435506117454e-26,7.334937419486202e-26,-5.875159908043863e-26)
    sum e = 2.3988596556392863e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.62984771495769 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9971e+04 | 1536 |      1 | 5.125e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2783814.6946569323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28201.98310937853, dt = 39.62984771495769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 285.87 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0993702077415526e-22,1.0204502597098847e-22,-1.7091305199787352e-22)
    sum a = (5.931169724904987e-26,6.679171674643297e-26,1.0997276385945755e-25)
    sum e = 2.398846073370888e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 39.62953487542014 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1024e+04 | 1536 |      1 | 4.951e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2881624.2239521863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28241.612957093486, dt = 39.62953487542014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 274.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1279390196847884e-22,1.0456308651151476e-22,-1.6321162211260018e-22)
    sum a = (-5.0631936676018184e-26,-6.700343575978272e-26,4.1638491734866376e-26)
    sum e = 2.398832525553084e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 39.629234897178364 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0436e+04 | 1536 |      1 | 5.047e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826956.491262365 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28281.242491968907, dt = 39.629234897178364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.0%)
   patch tree reduce : 1.29 us    (0.5%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 267.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.084027697623889e-22,9.925556791683041e-23,-1.6291554825304812e-22)
    sum a = (4.228800017277641e-26,-1.547825139487236e-25,-3.659357624817124e-27)
    sum e = 2.398819027132039e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 39.6289478520147 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0802e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860944.492675634 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28320.871726866088, dt = 21.219563723090687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.8%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 273.56 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1136546137131704e-22,9.423362894457123e-23,-1.6389075778165956e-22)
    sum a = (-2.1492740466554658e-26,4.670125998626051e-26,1.2894327804975981e-26)
    sum e = 2.398611895321729e-16
    sum de = 0
Info: cfl dt = 39.62880301828558 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0368e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1510314.7930523788 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 754                                                     [SPH][rank=0]
Info: time since start : 78.990741752 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010671810000000002 s
sph::RenderFieldGetter compute custom field took :  0.0009486900000000001 s
rho_t_ampl=-0.000883564, rho_t_phi=3.14159 rad
eps_t_ampl=-3.89194e-08, eps_t_phi=6.28319 rad
vx_t_ampl=7.65843e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28719.99s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 28342.09129058918, dt = 39.62880301828558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.42 us    (2.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 347.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1036026243257358e-22,9.822161727118876e-23,-1.63204140013609e-22)
    sum a = (4.417378148775055e-27,1.2164529712264664e-25,-4.6942006007671374e-26)
    sum e = 2.398802283361561e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.62853237277983 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9574e+04 | 1536 |      1 | 5.194e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2746852.0873981607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28381.720093607462, dt = 39.62853237277983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 276.12 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.097783051522484e-22,1.0452568087666432e-22,-1.6625000396132313e-22)
    sum a = (2.7072586549217887e-26,-5.379663453561895e-26,4.3545434139776755e-26)
    sum e = 2.3987869931697933e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.62827844145899 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9778e+04 | 1536 |      1 | 5.158e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2765730.7887053974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28421.34862598024, dt = 39.62827844145899 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.6%)
   patch tree reduce : 1.17 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 277.12 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.116828926151308e-22,9.891842638338208e-23,-1.6273143114677473e-22)
    sum a = (-1.1108026923820316e-27,9.513001657085694e-26,3.049951386830364e-26)
    sum e = 2.3987738019134195e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 39.62803764619248 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0224e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807195.6253412133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28460.9769044217, dt = 39.62803764619248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.5%)
   patch tree reduce : 1.17 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 303.73 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1141836657861935e-22,1.0563940265519144e-22,-1.6178128894353458e-22)
    sum a = (3.161912780175829e-26,-5.1295474280859625e-27,2.1746752747671038e-26)
    sum e = 2.398760713115968e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 39.62781006713992 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0081e+04 | 1536 |      1 | 5.106e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2793847.987980323 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28500.60494206789, dt = 39.62781006713992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.6%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 273.43 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1305842800499028e-22,1.0345001054850645e-22,-1.6109294012966524e-22)
    sum a = (5.579846082663228e-27,-4.253773022257117e-26,5.952208028214363e-27)
    sum e = 2.3987477551413114e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.627595756998375 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9664e+04 | 1536 |      1 | 5.178e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2755132.608207787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28540.23275213503, dt = 39.627595756998375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.8%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 277.92 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.120532290662468e-22,1.0102365581165357e-22,-1.611700200451806e-22)
    sum a = (-2.4076002541861707e-26,3.670574804889802e-26,2.8483954251457078e-27)
    sum e = 2.398734942151405e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.627394765280314 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9922e+04 | 1536 |      1 | 5.133e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2779085.8496444174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28579.86034789203, dt = 39.627394765280314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.9%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 271.20 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1147127178592163e-22,1.0404821654728532e-22,-1.6111864387079339e-22)
    sum a = (-6.897309741069824e-27,-2.3360897450792852e-26,1.2236555203555828e-25)
    sum e = 2.3987222882810584e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 39.62720713807243 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0245e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2809058.4633610374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28619.48774265731, dt = 39.62720713807243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.8%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 266.63 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1104803012750332e-22,1.0193311905788616e-22,-1.5390156202060167e-22)
    sum a = (-2.955251814151265e-26,1.3029674335220398e-25,4.330106254170716e-26)
    sum e = 2.398709807489023e-16
    sum de = 0
Info: cfl dt = 39.62703291803528 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0114e+04 | 1536 |      1 | 5.101e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2796871.264432826 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28659.114949795385, dt = 39.62703291803528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 276.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0998992598145755e-22,1.1014122764120829e-22,-1.5375222184109808e-22)
    sum a = (-5.786507048687792e-27,5.0479719093453306e-26,-6.885615636799843e-27)
    sum e = 2.398697513543841e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 39.62687214440067 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9789e+04 | 1536 |      1 | 5.156e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2766634.806357659 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28698.74198271342, dt = 21.243858416943112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 268.83 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0946087390843466e-22,1.096307750551276e-22,-1.5489287345890857e-22)
    sum a = (-2.592303492570625e-26,1.0077330582941507e-25,8.062830131089509e-27)
    sum e = 2.3985617212926147e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.62679541839267 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9741e+04 | 1536 |      1 | 5.165e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1480824.3505084626 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 764                                                     [SPH][rank=0]
Info: time since start : 79.82752642700001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001064517 s
sph::RenderFieldGetter compute custom field took :  0.00093271 s
rho_t_ampl=-0.00070526, rho_t_phi=3.14159 rad
eps_t_ampl=-1.8759e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.56858e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 29097.88s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 28719.985841130365, dt = 39.62679541839267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.84 us    (2.4%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 339.89 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0919634787192322e-22,1.1415820016831075e-22,-1.5441458800608756e-22)
    sum a = (7.401045845754698e-27,1.1135600219213974e-26,-6.210725684532702e-26)
    sum e = 2.398682450820329e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 39.62665140016367 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3175e+04 | 1536 |      1 | 6.628e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2152341.6401891643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28759.612636548758, dt = 39.62665140016367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 336.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0988411556685298e-22,1.1282580525510887e-22,-1.5826599846307293e-22)
    sum a = (-1.3368381239713983e-26,-2.365490118166343e-26,-2.2043664194325433e-26)
    sum e = 2.398668938875817e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 39.62652489996793 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3051e+04 | 1536 |      1 | 6.663e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2140900.8697591606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28799.239287948923, dt = 39.62652489996793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 305.12 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1004283118875983e-22,1.1119829848242393e-22,-1.5834571926124297e-22)
    sum a = (-3.018541734996288e-26,-8.919841230797102e-26,8.598649424429404e-26)
    sum e = 2.3986574218077453e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 39.62641193825022 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4159e+04 | 1536 |      1 | 6.358e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2243715.74409068 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 28838.86581284889, dt = 39.62641193825022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 299.17 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0771500206745916e-22,1.0636488597642067e-22,-1.5279795313753299e-22)
    sum a = (5.386101427015199e-26,-1.0368401024771008e-25,9.843742716765569e-26)
    sum e = 2.398646142202765e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 39.62631255808485 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3593e+04 | 1536 |      1 | 6.510e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2191196.0308785397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28878.49222478714, dt = 39.62631255808485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 306.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0993702077415526e-22,1.0196799309590281e-22,-1.4865054798266092e-22)
    sum a = (2.221605384764063e-26,-5.995924082893286e-26,2.1172831571584432e-26)
    sum e = 2.398635121659928e-16
    sum de = -2.0800043399382147e-32
Info: cfl dt = 39.626226779468844 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3651e+04 | 1536 |      1 | 6.494e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2196555.9975672457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28918.118537345224, dt = 39.626226779468844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 311.68 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1099512492020103e-22,1.0045918721557821e-22,-1.4934240406461705e-22)
    sum a = (1.042087921178864e-25,5.143631125694283e-26,-3.762923650663699e-26)
    sum e = 2.3986243722295814e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 39.62615461922752 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3363e+04 | 1536 |      1 | 6.574e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2169833.164785503 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28957.744764124694, dt = 39.62615461922752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 302.70 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1596821440661614e-22,1.047035384705492e-22,-1.51998558051022e-22)
    sum a = (-2.4540989715416975e-28,-1.757394009714369e-25,7.189338819339468e-26)
    sum e = 2.398613905777328e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 39.62609609076395 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3610e+04 | 1536 |      1 | 6.506e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2192723.524575919 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28997.370918743924, dt = 39.62609609076395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 328.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1416943735833833e-22,9.323811723861016e-23,-1.469797235118469e-22)
    sum a = (6.109414808101173e-27,-1.7745733331943785e-26,-5.27265352103238e-26)
    sum e = 2.3986037338576053e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 39.62605120406381 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3588e+04 | 1536 |      1 | 6.512e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2190677.9354349165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29036.997014834687, dt = 39.62605120406381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 290.97 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.161798352358253e-22,9.566558277815544e-23,-1.5153816842571436e-22)
    sum a = (-3.9175169372031414e-26,2.1049398203747566e-26,3.247039741769414e-27)
    sum e = 2.3985938677013823e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.626019965699754 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3851e+04 | 1536 |      1 | 6.440e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2215133.3262871713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29076.623066038752, dt = 21.25732563280326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 305.40 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (60.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.134287644561063e-22,9.688160173486473e-23,-1.5036013917101643e-22)
    sum a = (-8.69138525237057e-26,3.036583890713902e-26,-7.925156148927672e-27)
    sum e = 2.398519461216675e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 39.626013048139896 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9796e+04 | 1536 |      1 | 5.155e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1484478.420243227 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 774                                                     [SPH][rank=0]
Info: time since start : 80.78358760200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009006410000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007357020000000001 s
rho_t_ampl=-0.000509309, rho_t_phi=3.14159 rad
eps_t_ampl=-5.24933e-09, eps_t_phi=6.28318 rad
vx_t_ampl=9.26438e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 29475.77s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 29097.880391671555, dt = 39.626013048139896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.15 us    (2.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 334.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0961958953034154e-22,9.818343665771572e-23,-1.5079292701502324e-22)
    sum a = (6.122331118477709e-27,-2.4521457580047773e-26,1.3644055900061188e-25)
    sum e = 2.3985819964380607e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 39.625998530071016 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7277e+04 | 1536 |      1 | 5.631e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2533351.5142751043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29137.506404719694, dt = 39.625998530071016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 295.91 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1057188326178272e-22,9.612473177942052e-23,-1.425260147685109e-22)
    sum a = (-7.271882741989346e-27,1.0795853955369777e-25,4.064054018643837e-26)
    sum e = 2.398571597728737e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 39.62600193099958 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9980e+04 | 1536 |      1 | 5.123e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2784362.460171702 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29177.132403249765, dt = 39.62600193099958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 309.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1226484989545596e-22,1.0302728554250321e-22,-1.4281367834696475e-22)
    sum a = (-3.812894823153206e-26,-8.496245534293201e-26,-2.578686369374592e-26)
    sum e = 2.398562902757717e-16
    sum de = -2.1570415377137042e-32
Info: cfl dt = 39.62601896180322 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9962e+04 | 1536 |      1 | 5.127e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782636.648857758 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29216.758405180764, dt = 39.62601896180322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 263.63 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0898472704271406e-22,9.583747303664637e-23,-1.451516353138712e-22)
    sum a = (-3.2794512046023e-26,1.648954961971571e-26,-4.6903646983517937e-26)
    sum e = 2.398554555173539e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.626049628312025 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0298e+04 | 1536 |      1 | 5.070e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813910.928733834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29256.38442414257, dt = 39.626049628312025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 275.87 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0718594999443628e-22,9.850205620208409e-23,-1.4742862858451507e-22)
    sum a = (7.738161546582269e-26,-3.3687424528911026e-26,3.7516164251635565e-26)
    sum e = 2.3985465692243316e-16
    sum de = 1.771855548836257e-32
Info: cfl dt = 39.62609391804494 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0409e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824182.6036607586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29296.01047377088, dt = 39.62609391804494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 270.14 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1247647072466511e-22,9.61721863037439e-23,-1.4426939772162448e-22)
    sum a = (2.7214665963359773e-26,2.6177808832543795e-26,1.5764713975565127e-25)
    sum e = 2.39853895365762e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 39.62615181541508 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0042e+04 | 1536 |      1 | 5.113e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790108.360102739 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29335.636567688925, dt = 39.62615181541508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 274.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1237066031006052e-22,9.839668494203231e-23,-1.3564228756950707e-22)
    sum a = (-2.5057642130478384e-27,3.382040954873506e-26,-4.097367544978944e-26)
    sum e = 2.3985317168982187e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 39.62622330147385 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0636e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2845289.739020503 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29375.26271950434, dt = 39.62622330147385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 264.13 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1184160823703764e-22,9.988882878197117e-23,-1.412012088708814e-22)
    sum a = (2.580678813231743e-26,-7.256865796808775e-26,3.993805402296096e-26)
    sum e = 2.3985248669550933e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.626308353921935 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9936e+04 | 1536 |      1 | 5.131e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2780293.5424828962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29414.888942805814, dt = 39.626308353921935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.5%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 285.66 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1395781652912917e-22,9.490566457346237e-23,-1.380154980972136e-22)
    sum a = (1.0575874936307063e-25,1.5593244082636973e-27,2.8439796994934913e-27)
    sum e = 2.39851841141257e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 39.62640694711831 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 1536 |      1 | 5.067e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2815243.3670224966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29454.515251159737, dt = 21.259691053008282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 395.05 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1808442269870768e-22,9.640682399804405e-23,-1.386899865810653e-22)
    sum a = (1.0338860640897641e-25,-1.543380995312466e-25,6.645035434270526e-26)
    sum e = 2.3984894501234176e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.626469832987716 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0517e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1520588.7600924012 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 784                                                     [SPH][rank=0]
Info: time since start : 81.610621986 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000912603 s
sph::RenderFieldGetter compute custom field took :  0.000823116 s
rho_t_ampl=-0.000300613, rho_t_phi=3.14159 rad
eps_t_ampl=1.27152e-09, eps_t_phi=2.06671e-06 rad
vx_t_ampl=9.72844e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 29853.67s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 29475.774942212745, dt = 39.626469832987716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.93 us    (2.2%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 385.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2210521845368159e-22,8.863363341772062e-23,-1.3538066768235524e-22)
    sum a = (1.430481374201279e-26,3.5934257082379256e-27,4.7581937493588415e-26)
    sum e = 2.398510924018425e-16
    sum de = -2.0800043399382147e-32
Info: cfl dt = 39.62658472787161 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3510e+04 | 1536 |      1 | 6.533e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2183451.9126253645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29515.401412045732, dt = 39.62658472787161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 327.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.215761663806587e-22,9.190484401630269e-23,-1.3386900238027927e-22)
    sum a = (-7.084596241529584e-27,-1.260112906821674e-25,4.0198261687554744e-26)
    sum e = 2.3985046653661743e-16
    sum de = 3.158525108795067e-32
Info: cfl dt = 39.626717539245206 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3840e+04 | 1536 |      1 | 6.443e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2214159.3814113904 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29555.027996773602, dt = 39.626717539245206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 304.78 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1988319974698549e-22,8.434257678442807e-23,-1.324223721462854e-22)
    sum a = (-3.149642285318121e-26,-6.728081793987334e-26,9.173914538392333e-26)
    sum e = 2.39849966083225e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 39.62686376461134 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0085e+04 | 1536 |      1 | 7.647e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1865406.632341134 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29594.65471431285, dt = 39.62686376461134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.7%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 298.20 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1681469772345275e-22,8.283986740260121e-23,-1.277658395102933e-22)
    sum a = (-4.5613950094734234e-26,-3.5064597742244303e-26,-1.167822189504168e-25)
    sum e = 2.3984950776710967e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.62702337301695 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3969e+04 | 1536 |      1 | 6.408e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2226094.2076928704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29634.281578077458, dt = 39.62702337301695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 303.51 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1692050813805734e-22,8.208904228041321e-23,-1.3652509507843797e-22)
    sum a = (-4.531041680088566e-26,7.183196472740031e-26,6.165442552767022e-26)
    sum e = 2.3984909229134196e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 39.6271963202561 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0480e+04 | 1536 |      1 | 5.039e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830821.8781426246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29673.908601450476, dt = 39.6271963202561 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.2%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 359.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.153333519189887e-22,8.705298701908173e-23,-1.3054644651337292e-22)
    sum a = (3.0970083205337395e-26,-1.2388763372164238e-25,-1.3005654620562767e-25)
    sum e = 2.3984872011375564e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 39.627382559132116 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9869e+04 | 1536 |      1 | 5.143e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2774082.7940507117 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29713.53579777073, dt = 39.627382559132116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 276.27 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1723793938187107e-22,7.826715770523794e-23,-1.3949873118099475e-22)
    sum a = (8.985877128955574e-26,-9.57093939758542e-26,3.2799536566695946e-26)
    sum e = 2.398483916494641e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.62758203919886 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0016e+04 | 1536 |      1 | 5.117e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2787813.4872985864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29753.163180329862, dt = 39.62758203919886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 282.80 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2178778720986786e-22,7.50320352778479e-23,-1.3497218470779902e-22)
    sum a = (3.022416628109249e-26,2.110895481896398e-26,6.384345454785133e-27)
    sum e = 2.398481072655522e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 39.627794706775546 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9753e+04 | 1536 |      1 | 5.163e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2763374.3074676055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29792.790762369063, dt = 39.627794706775546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 284.25 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2274008094130906e-22,7.818258170489239e-23,-1.352425722532137e-22)
    sum a = (-7.899615426288959e-26,9.027838740019655e-27,4.525755027131946e-26)
    sum e = 2.3984786728074743e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 39.62802050496166 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0059e+04 | 1536 |      1 | 5.110e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791817.8000988457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29832.418557075838, dt = 21.25093567809381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 317.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1766118104028936e-22,7.813662547257268e-23,-1.3351057727341778e-22)
    sum a = (2.1370035517977573e-26,-6.761686038234236e-26,4.5639957189704865e-26)
    sum e = 2.398474766582827e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 39.628151506452255 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9759e+04 | 1536 |      1 | 5.162e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1482181.4076286263 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 794                                                     [SPH][rank=0]
Info: time since start : 82.506232681 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009994140000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007947630000000001 s
rho_t_ampl=-8.43925e-05, rho_t_phi=3.14159 rad
eps_t_ampl=6.4075e-10, eps_t_phi=4.10837e-06 rad
vx_t_ampl=9.94917e-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": {
            "drag_mode": {
                "stopping_times": [
                    1.0
                ],
                "type": "constant_stopping_times"
            },
            "mode": {
                "ndust": 1,
                "pure_diffusion_mode": false,
                "type": "monofluid_tvi"
            }
        },
        "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"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": 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 = 1536 ( 1.5e+03 ) Ntotal = 1536 ( 1.5e+03 rank min = 3.7e+06 max = 1.5e+03) rate = 1.536000e+03 N.s^-1
SPH setup: the generation step took : 0.0008504570000000001 s
SPH setup: final particle count = 1536 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     : 3.64 us    (60.6%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (0.3%)
   patch tree reduce : 552.00 ns  (0.1%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 377.05 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         1536 / 1536 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.007955382 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.010437874000000001 s
3.1622776601683796e-06
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (0.8%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 304.26 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 1.86 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6699218749999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.024494414403244815 unconverged cnt = 1536
Warning: High interface/patch volume 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.9160156249999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0269438558435693 unconverged cnt = 1536
Warning: High interface/patch volume 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.9160156249999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.029638241427926232 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1360677083333335
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03260206557071886 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.249348958333333
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03586227212779075 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.169921875
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03944849934056983 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3543733069385827e-23,0,0)
    sum a = (5.498863561318307e-23,-4.3351752571526177e-23,4.6090117930538815e-23)
    sum e = 2.3984426662425327e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 0.012531678499015134 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    | 6.7333e+03 | 1536 |      1 | 2.281e-01 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
[ 0.        -9.99827218e-01j -0.01314551-8.63910009e-05j
  0.01314551-8.63910009e-05j  0.        +0.00000000e+00j]
k=5.878469308107144 cs=0.0031622776601683794 ts=1 epsilon_0=0.5
eigenval = [-0.01314437-8.63910035e-05j  0.01314437-8.63910035e-05j
  0.        +2.20871358e-19j]
eigenvec = [[ 8.16484825e-01+0.00000000e+00j  8.16484825e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.52684717e-05-5.36609058e-03j  3.52684717e-05+5.36609058e-03j
   4.47213595e-01+4.75758799e-17j]
 [-5.77329487e-01-3.79448099e-03j  5.77329487e-01-3.79448099e-03j
  -2.94663514e-16-6.87548200e-16j]]
478.01331183043504
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 : 83.46284296600001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00090569 s
sph::RenderFieldGetter compute custom field took :  0.0007675620000000001 s
offset_rho=0.999981, ampl_rho=2.46613e-16, phi_rho=3.33873 rad
offset_eps=0.500009, ampl_eps=1.29523e-16, phi_eps=0.216429 rad
offset_vx=0, ampl_vx=3.16228e-06, phi_vx=4.71239 rad
eigenval = [-0.01314437-8.63910035e-05j  0.01314437-8.63910035e-05j
  0.        +2.20871358e-19j]
eigenvec = [[ 8.16484825e-01+0.00000000e+00j  8.16484825e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.52684717e-05-5.36609058e-03j  3.52684717e-05+5.36609058e-03j
   4.47213595e-01+4.75758799e-17j]
 [-5.77329487e-01-3.79448099e-03j  5.77329487e-01-3.79448099e-03j
  -2.94663514e-16-6.87548200e-16j]]
eigenvec=[[ 8.16484825e-01+0.00000000e+00j  8.16484825e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.52684717e-05-5.36609058e-03j  3.52684717e-05+5.36609058e-03j
   4.47213595e-01+4.75758799e-17j]
 [-5.77329487e-01-3.79448099e-03j  5.77329487e-01-3.79448099e-03j
  -2.94663514e-16-6.87548200e-16j]]
v=[2.46613384e-16+0.j    1.29523479e-16+0.j    0.00000000e+00-0.001j]
c=[ 1.13837708e-05+8.65981759e-04j  1.13837708e-05-8.65981759e-04j
 -2.07835276e-05+1.87205258e-21j]
coefs=[ 1.13837708e-05+8.65981759e-04j  1.13837708e-05-8.65981759e-04j
 -2.07835276e-05+1.87205258e-21j]
coefs=[ 1.13837708e-05+8.65981759e-04j  1.13837708e-05-8.65981759e-04j
 -2.07835276e-05+1.87205258e-21j]
decomp=[2.46611949e-16-1.06745803e-19j 1.29523196e-16+2.70837666e-23j
 1.46546606e-21-1.00000000e-03j]
rho_t_ampl=2.46613e-16, rho_t_phi=3.33873 rad
eps_t_ampl=1.29523e-16, eps_t_phi=0.216429 rad
vx_t_ampl=3.16228e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.95s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 0, dt = 0.012531678499015134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.08 us    (2.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 344.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.031559960407874e-23,-5.432702255139224e-25,5.775865398872026e-25)
    sum a = (1.923241198328174e-23,-1.3195078877841252e-23,-7.194329566009355e-23)
    sum e = 2.3984426662425327e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 0.42607703744213793 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    | 3.2260e+04 | 1536 |      1 | 4.761e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.5233881722141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.012531678499015134, dt = 0.42607703744213793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 287.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.015779980203937e-23,-5.976433476568039e-24,-3.081537813441896e-23)
    sum a = (-9.222534934198603e-23,1.280965756369972e-22,-1.0330261298231646e-23)
    sum e = 2.3984426662457573e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 0.7017721794593575 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    | 2.5750e+04 | 1536 |      1 | 5.965e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25714.613012770464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4386087159411531, dt = 0.7017721794593575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 284.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.110459861427559e-23,1.1401874311835566e-22,-2.4938918545702035e-23)
    sum a = (2.108355175382602e-23,2.6060268604374763e-23,7.829999723516652e-23)
    sum e = 2.398442678075713e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 0.8855660606066834 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    | 2.1760e+04 | 1536 |      1 | 7.059e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35789.772368399244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1403808954005106, dt = 0.8855660606066834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 304.39 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6929666336732283e-23,1.0129370901991941e-22,7.550002639987292e-23)
    sum a = (5.477011585969406e-23,-2.6892937674991984e-22,3.049293846003833e-23)
    sum e = 2.3984427858168005e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.0080922115307214 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    | 2.2210e+04 | 1536 |      1 | 6.916e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46098.847686848 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 2.025946956007194, dt = 1.0080922115307214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.9%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 265.84 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3543733069385827e-23,-3.0042831051365655e-22,8.507156581378251e-23)
    sum a = (-8.021421399663837e-23,5.881567783254557e-23,7.041128014126831e-23)
    sum e = 2.3984431300403525e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.089773319376049 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    | 2.2753e+04 | 1536 |      1 | 6.751e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53758.11814367238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0340391675379155, dt = 1.089773319376049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 269.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.819206475304725e-23,-7.11339323624101e-23,1.8192458496788302e-22)
    sum a = (1.2707004150145572e-22,9.40561277601258e-23,-1.8001070851570938e-23)
    sum e = 2.3984438369448953e-13
    sum de = -1.1107161545511846e-27
Info: cfl dt = 1.1442246113334285 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    | 2.9940e+04 | 1536 |      1 | 5.130e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76472.24835185034 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.123812486913964, dt = 1.1442246113334285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 287.52 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5913886356528346e-22,5.568946411971169e-23,1.1315260606150553e-22)
    sum a = (6.542390198019238e-23,1.9744671561184092e-22,3.808048122109952e-23)
    sum e = 2.398444987275242e-13
    sum de = -4.291403324402304e-28
Info: cfl dt = 1.1805229208062276 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    | 2.9717e+04 | 1536 |      1 | 5.169e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79693.70920548141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.268037098247393, dt = 1.1805229208062276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 351.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9299819623874803e-22,3.4793084556998604e-22,1.9019243304000923e-22)
    sum a = (1.3738159706221736e-22,-1.1907171801673048e-22,5.7853086005045396e-24)
    sum e = 2.398446619287576e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.20471945747448 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.0767e+04 | 1536 |      1 | 4.992e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85126.80298099508 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.4485600190536205, dt = 1.20471945747448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 285.70 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7922452594280315e-22,1.7654209996381623e-23,1.780995111235283e-22)
    sum a = (3.6167322342026897e-23,-1.1921917021235431e-22,1.1984912378306438e-23)
    sum e = 2.398448742922681e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2208483432739885 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    | 2.9847e+04 | 1536 |      1 | 5.146e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84273.72914085616 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.6532794765281, dt = 1.2208483432739885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.7%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 284.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7922452594280315e-22,-1.279831471472145e-22,1.9646566319474576e-22)
    sum a = (9.723646444614965e-23,-8.580178322563737e-23,4.390688762918454e-24)
    sum e = 2.3984513529958164e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2315989771946863 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.0915e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88457.82542315798 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.874127819802089, dt = 1.2315989771946863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 292.68 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.552930558448189e-22,-2.1325776165933574e-22,1.9723753332468631e-22)
    sum a = (2.4660439753779173e-23,-8.000281193743622e-23,5.125433317084406e-23)
    sum e = 2.3984544380201784e-13
    sum de = 7.068193710780266e-28
Info: cfl dt = 1.2387642801372296 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    | 3.0508e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88062.12415056286 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.105726796996775, dt = 1.2387642801372296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.4%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 296.73 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.552930558448189e-22,-3.0879138495252934e-22,2.895881787191895e-22)
    sum a = (2.605581459637703e-23,-8.354441499924887e-24,2.0364579003534832e-23)
    sum e = 2.398457985057177e-13
    sum de = 8.330371159133885e-28
Info: cfl dt = 1.2435395244917495 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    | 3.0434e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88360.4050185442 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 11.344491077134006, dt = 0.6058417186268699 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 279.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.823805219835906e-22,-2.6947495312298734e-22,2.8279332821946177e-22)
    sum a = (-7.459634229622663e-24,-7.283862216228883e-23,2.9614978189415985e-23)
    sum e = 2.398450070592505e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2467242881713518 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    | 3.0821e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43764.31173629687 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 14                                                      [SPH][rank=0]
Info: time since start : 84.49489314 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010312230000000002 s
sph::RenderFieldGetter compute custom field took :  0.0009090150000000001 s
rho_t_ampl=0.000218393, rho_t_phi=3.14159 rad
eps_t_ampl=-1.17474e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.12276e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.90s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.950332795760875, dt = 1.2467242881713518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.79 us    (2.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 351.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.383633895080866e-22,-3.798184243520714e-22,3.225171796922563e-22)
    sum a = (1.547146656046296e-22,9.801860354830677e-23,2.0748712401339303e-23)
    sum e = 2.398462858805699e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.248843957512551 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    | 3.0259e+04 | 1536 |      1 | 5.076e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88417.47457158395 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.197057083932227, dt = 1.248843957512551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 348.90 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.566411166386535e-22,-1.5090272658844427e-22,3.4290218934913735e-22)
    sum a = (9.583116987718263e-23,-9.861701943712924e-23,3.290400241710117e-23)
    sum e = 2.3984681377609695e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.250255933829569 cfl multiplier : 0.997739178322084            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0241e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88513.43575480397 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.445901041444777, dt = 1.250255933829569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 281.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.735707829753858e-22,-3.969825346384482e-22,3.916306438618621e-22)
    sum a = (8.4846726211045e-24,-3.1862897327494644e-23,-1.905427693468865e-23)
    sum e = 2.3984732090314533e-13
    sum de = 8.077935669463161e-28
Info: cfl dt = 1.2511961622896646 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    | 3.0475e+04 | 1536 |      1 | 5.040e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89300.89100447239 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.696156975274347, dt = 1.2511961622896646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 306.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.532551833713072e-22,-3.9511942790634005e-22,3.3530943215039394e-22)
    sum a = (1.9393065051745085e-22,-6.35323002528548e-23,-3.539982567511736e-23)
    sum e = 2.39847869739601e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.2518220406850458 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    | 3.0597e+04 | 1536 |      1 | 5.020e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89724.12452652364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.94735313756401, dt = 1.2518220406850458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 290.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2121641097100315e-21,-4.944629042315932e-22,2.8076940620660304e-22)
    sum a = (-1.627231913600135e-22,-1.468732074803498e-22,9.577495986032575e-25)
    sum e = 2.398484595860197e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.252238500470569 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    | 3.1033e+04 | 1536 |      1 | 4.950e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91049.43504970921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.199175178249057, dt = 1.252238500470569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 274.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.160099174304961e-22,-7.3054721237759405e-22,3.0472534416454393e-22)
    sum a = (-1.49880452287383e-22,4.228944841407738e-23,4.5503001006773294e-24)
    sum e = 2.398490897293826e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.252515495708074 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    | 3.0837e+04 | 1536 |      1 | 4.981e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90505.04050497718 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.451413678719625, dt = 1.252515495708074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 315.75 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.925383217856299e-22,-5.591410830321963e-22,3.1267403057755035e-22)
    sum a = (3.25631550945585e-23,-2.6208746455951163e-22,7.000064935528146e-23)
    sum e = 2.398497594402287e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2526996623133402 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    | 2.6811e+04 | 1536 |      1 | 5.729e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78706.355553824 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 20.7039291744277, dt = 1.2526996623133402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 301.54 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.686068516876457e-22,-1.0780766884462456e-21,4.413526087070872e-22)
    sum a = (9.090437244715701e-23,1.1585485925221288e-22,-2.6612953053871055e-23)
    sum e = 2.398504679648995e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.252822090835065 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    | 3.0285e+04 | 1536 |      1 | 5.072e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88915.81253847967 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.95662883674104, dt = 1.252822090835065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 316.82 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.97272315846811e-22,-6.962060496618432e-22,3.4749739966241784e-22)
    sum a = (1.4821393825736092e-22,-1.0007764747974935e-22,8.933818798337364e-23)
    sum e = 2.3985121451710595e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.2529035082695221 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    | 2.9963e+04 | 1536 |      1 | 5.126e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87979.9031944399 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23.209450927576103, dt = 0.6912146639456473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 297.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0699549124814804e-21,-9.00643653683432e-22,4.818823407213492e-22)
    sum a = (-1.30067452152676e-22,-1.5564194205741023e-22,-4.243972551021194e-24)
    sum e = 2.3984766478990316e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2529582839903917 cfl multiplier : 0.9999117862597856          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0506e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49420.02512028697 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 24                                                      [SPH][rank=0]
Info: time since start : 85.32348666600001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010316750000000001 s
sph::RenderFieldGetter compute custom field took :  0.000874471 s
rho_t_ampl=0.000431332, rho_t_phi=3.14159 rad
eps_t_ampl=-4.57329e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.00533e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 35.85s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 23.90066559152175, dt = 1.2529582839903917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.13 us    (2.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 347.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.092380508958031e-22,-1.1148593438146108e-21,4.442221393339745e-22)
    sum a = (-2.4680279206517533e-23,-2.903604171118012e-23,-2.1811858398867947e-23)
    sum e = 2.398522219194375e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.252994192326355 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    | 2.3430e+04 | 1536 |      1 | 6.556e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68804.3800990053 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 25.153623875512142, dt = 1.252994192326355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 303.24 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.22781783965189e-22,-1.0719249081401095e-21,4.0588609338371514e-22)
    sum a = (6.700444504834825e-23,-1.5977332726182805e-22,6.928552278958525e-23)
    sum e = 2.3985317243601036e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.2530183970184154 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    | 3.0462e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89457.51528467462 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.406618067838497, dt = 1.2530183970184154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 294.27 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (60.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.514472481243543e-22,-1.3540316705291232e-21,5.497743728687424e-22)
    sum a = (-3.154472985398945e-23,-1.0727151570706443e-22,2.288478137483166e-23)
    sum e = 2.398540473048447e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2530348560549278 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    | 2.9476e+04 | 1536 |      1 | 5.211e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86565.37716826785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.659636464856913, dt = 1.2530348560549278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 314.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.837285827774252e-22,-1.4555526042902735e-21,5.493793102906285e-22)
    sum a = (1.1410330584921048e-22,3.3167764354206524e-23,-5.0633016215941745e-23)
    sum e = 2.3985495592407253e-13
    sum de = 1.1612032524853294e-27
Info: cfl dt = 1.2530462984428812 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    | 2.9363e+04 | 1536 |      1 | 5.231e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86232.17717282705 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.91267132091184, dt = 1.2530462984428812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 274.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1072001784222913e-21,-1.326003974492802e-21,4.398736152814177e-22)
    sum a = (6.767898644145242e-23,1.1767976115276601e-23,-1.513885911235263e-23)
    sum e = 2.398558974887139e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2530545435373337 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    | 2.9516e+04 | 1536 |      1 | 5.204e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86682.18209880716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.165717619354723, dt = 1.2530545435373337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.8%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 272.83 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1681469772345275e-21,-1.3246640881195819e-21,4.431417101742056e-22)
    sum a = (-9.258411277900467e-26,-6.035400797658273e-23,-5.622545067470873e-23)
    sum e = 2.3985687096114673e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.2530608040538505 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    | 2.9713e+04 | 1536 |      1 | 5.169e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87262.7614392684 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 31.418772162892058, dt = 1.2530608040538505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.7%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 267.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1004283118875984e-21,-1.4454798454757531e-21,3.469459316256312e-22)
    sum a = (7.88287588804097e-24,-2.5255712135563758e-23,-1.3218134750441847e-23)
    sum e = 2.398578752598224e-13
    sum de = -1.0602290566170399e-27
Info: cfl dt = 1.2530658882368262 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    | 2.9582e+04 | 1536 |      1 | 5.192e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86878.95925401314 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 32.67183296694591, dt = 1.2530658882368262 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.7%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 270.76 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1444454443631024e-21,-1.4551366990961491e-21,3.573281287998743e-22)
    sum a = (-7.02977942029157e-23,4.836421844867109e-23,-3.075946378120354e-24)
    sum e = 2.3985890926837213e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2530703346438044 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    | 2.9649e+04 | 1536 |      1 | 5.181e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87074.61112420182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 33.92489885518273, dt = 1.2530703346438044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 301.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.582191146590472e-22,-1.3484085548066987e-21,3.5982816678321213e-22)
    sum a = (9.880047463702356e-23,3.351703430309841e-23,1.123723151572603e-23)
    sum e = 2.398599718372564e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.253074502001367 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    | 3.0053e+04 | 1536 |      1 | 5.111e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88261.70024499905 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 35.177969189826534, dt = 0.6730291974560956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.6%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 278.82 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1478313776304489e-21,-1.3351547154074037e-21,3.7635886099849617e-22)
    sum a = (8.023074687392033e-23,9.155902595135892e-23,-5.10761570947961e-23)
    sum e = 2.398514239475181e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2530772397623091 cfl multiplier : 0.9999984702387851          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0508e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48122.98147353422 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 34                                                      [SPH][rank=0]
Info: time since start : 86.17156288700001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001077781 s
sph::RenderFieldGetter compute custom field took :  0.0009409450000000001 s
rho_t_ampl=0.00063351, rho_t_phi=3.14159 rad
eps_t_ampl=-1.00919e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.81307e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 47.80s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 35.85099838728263, dt = 1.2530772397623091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.08 us    (2.2%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 382.69 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2443304757498227e-21,-1.2008923039706368e-21,2.913871260848267e-22)
    sum a = (4.539266786536343e-23,5.2663304183401445e-23,-9.444878384030288e-23)
    sum e = 2.3986134421614825e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2530811523979954 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    | 2.9522e+04 | 1536 |      1 | 5.203e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86703.32084586828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 37.10407562704494, dt = 1.2530811523979954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.8%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 278.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2883476082253267e-21,-1.159270630417565e-21,1.4586050948588204e-22)
    sum a = (-5.3844274731904e-23,2.626154849422432e-22,-7.917134120046299e-24)
    sum e = 2.398626279491384e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.253085419461022 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    | 2.9950e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87960.79147638116 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 38.35715677944294, dt = 1.253085419461022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 281.08 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1732258771355473e-21,-6.986435382582407e-22,1.9015525383131855e-22)
    sum a = (-6.509985758546586e-23,9.567311944526015e-23,-1.386820987609592e-23)
    sum e = 2.3986378240310725e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2530899813708505 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.0222e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88759.32725574366 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 39.61024219890396, dt = 1.2530899813708505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.8%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 277.06 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0784197456498465e-21,-6.833566716056792e-22,1.6904853584602796e-22)
    sum a = (2.011720507669516e-23,-1.1646830811177483e-24,3.536815028116643e-23)
    sum e = 2.3986495929138255e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2530948837607339 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.0007e+04 | 1536 |      1 | 5.119e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88129.5636797054 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 40.86333218027481, dt = 1.2530948837607339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 301.66 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1630680773335079e-21,-7.454887227233079e-22,2.4421697882752666e-22)
    sum a = (1.4199757639934203e-22,-1.7072058971400803e-22,-1.0166466852267099e-22)
    sum e = 2.398661578313996e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.2531001568182414 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    | 2.9406e+04 | 1536 |      1 | 5.223e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86364.92758838518 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 42.11642706403554, dt = 1.2531001568182414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 298.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4136271391171457e-21,-1.065654297778509e-21,3.09634046837138e-23)
    sum a = (2.5764835956214444e-23,-5.1842420993731124e-24,-3.473443372922974e-23)
    sum e = 2.39867376703825e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2531058201021092 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    | 2.9746e+04 | 1536 |      1 | 5.164e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87361.44600928815 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 43.36952722085378, dt = 1.2531058201021092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 316.54 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3476014404038898e-21,-9.684321446042567e-22,2.937262747744828e-23)
    sum a = (2.5394499505098425e-24,-5.2303010163603183e-23,1.3106071501357213e-23)
    sum e = 2.3986861455681844e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2531118860401478 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.0204e+04 | 1536 |      1 | 5.085e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88707.31475574488 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 44.62263304095589, dt = 1.2531118860401478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 282.41 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3899256062457205e-21,-1.0634933473872732e-21,7.577060922560182e-23)
    sum a = (-2.2220187066961122e-23,-1.5669622136104576e-22,-1.4064407292206245e-23)
    sum e = 2.3986987001819873e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2531183622669306 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    | 2.9946e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87950.9751551425 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 45.875744926996035, dt = 1.2531183622669306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 301.00 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2968124413936928e-21,-1.325258393392627e-21,4.1122417230538153e-23)
    sum a = (7.803518077087537e-24,3.033285703291103e-24,-1.0664883093096693e-24)
    sum e = 2.398711416969127e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.2531252531824648 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.0261e+04 | 1536 |      1 | 5.076e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88875.64224082719 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 47.128863289262966, dt = 0.6724678937805351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 305.69 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3391366072355237e-21,-1.223138840310766e-21,4.854920355778086e-23)
    sum a = (-2.796040205925941e-23,-1.4629710613224156e-23,1.6799192963389834e-23)
    sum e = 2.398562395023933e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.2531292494815816 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    | 3.0348e+04 | 1536 |      1 | 5.061e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47831.138922088074 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 86.999249801 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010093530000000002 s
sph::RenderFieldGetter compute custom field took :  0.0008105320000000001 s
rho_t_ampl=0.000819898, rho_t_phi=3.14159 rad
eps_t_ampl=-1.75875e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.55094e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 59.75s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 47.8013311830435, dt = 1.2531292494815816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.66 us    (2.2%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (84.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3001983746610394e-21,-1.2474163372945016e-21,7.560781215609544e-23)
    sum a = (-2.901850620530518e-23,4.212143143416061e-23,-1.2914425954642247e-22)
    sum e = 2.3987275790035295e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2531366613393253 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    | 3.0213e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88737.4696554524 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 49.05446043252508, dt = 1.2531366613393253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 304.93 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3035843079283859e-21,-1.159073010868804e-21,-1.7767059863820919e-22)
    sum a = (8.020429427026919e-23,-1.6727593889968984e-23,-1.0508534082751108e-22)
    sum e = 2.398742429155352e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531446085994276 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    | 3.0621e+04 | 1536 |      1 | 5.016e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89934.65817366255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 50.30759709386441, dt = 1.2531446085994276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.6%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 287.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4034693393151063e-21,-1.2169104921167176e-21,-2.942831703995929e-22)
    sum a = (3.766850759922933e-23,3.04239202501432e-23,3.677309912134934e-23)
    sum e = 2.3987556151198496e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.253152973765007 cfl multiplier : 0.9999999921397332           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0757e+04 | 1536 |      1 | 4.994e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90336.04545063857 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 51.56074170246384, dt = 1.253152973765007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.5%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 282.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4356357053548976e-21,-1.1492374988432799e-21,-1.5931628227798173e-22)
    sum a = (-8.2003071318546995e-25,6.94024129640711e-23,3.7809273415776414e-23)
    sum e = 2.3987688886761506e-13
    sum de = 5.806016262426647e-28
Info: cfl dt = 1.253161754665954 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    | 3.0877e+04 | 1536 |      1 | 4.975e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90689.48149438182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 52.81389467622884, dt = 1.253161754665954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.4%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 301.53 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4203990056518386e-21,-1.0378423816233383e-21,-1.1128590441245615e-22)
    sum a = (6.978196843171838e-23,-2.100377416278535e-23,-3.49797319132643e-23)
    sum e = 2.398782244562278e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.2531709493645318 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    | 3.0951e+04 | 1536 |      1 | 4.963e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90905.8457620224 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 54.067056430894795, dt = 1.2531709493645318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 307.54 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5727660026824292e-21,-1.1208143828810916e-21,-2.007296870819703e-22)
    sum a = (-2.126789333551993e-23,3.722818412033805e-23,-2.223833050345429e-23)
    sum e = 2.3987956681406687e-13
    sum de = 7.068193710780266e-28
Info: cfl dt = 1.2531805556337452 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    | 3.1017e+04 | 1536 |      1 | 4.952e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91102.05357374348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 55.320227380259325, dt = 1.2531805556337452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.5%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 295.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4576442715926496e-21,-1.0376745729189263e-21,-2.206147534082014e-22)
    sum a = (-2.682294010226021e-23,1.027638993703825e-22,4.2158038502985726e-24)
    sum e = 2.3988091445851964e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.253190571011362 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    | 3.1259e+04 | 1536 |      1 | 4.914e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91810.87194984649 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 56.57340793589307, dt = 1.253190571011362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.7%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 274.69 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4288638388202047e-21,-8.678285013734272e-22,-1.9875564437964707e-22)
    sum a = (7.38027641866923e-24,1.3897225683047566e-22,-1.1982492469085962e-22)
    sum e = 2.3988226590161116e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.253200992841157 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    | 3.1017e+04 | 1536 |      1 | 4.952e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91100.73524247133 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 57.82659850690443, dt = 1.253200992841157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 270.79 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4661091047610158e-21,-6.709849645398602e-22,-4.266436946838325e-22)
    sum a = (1.1110093533480561e-23,-9.771713847865724e-23,2.783139436765548e-23)
    sum e = 2.3988361965172396e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.253211818300696 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    | 3.1289e+04 | 1536 |      1 | 4.909e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91903.19229724623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 59.07979949974559, dt = 0.6718644790587902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 309.13 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4915036042661142e-21,-8.849512923829096e-22,-3.154232465839071e-22)
    sum a = (2.2273092274263412e-23,-6.122851645785884e-23,-2.9932233927621875e-23)
    sum e = 2.3986153704375403e-13
    sum de = -6.058451752097371e-28
Info: cfl dt = 1.2532178917754557 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    | 3.0980e+04 | 1536 |      1 | 4.958e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48783.27955901372 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 54                                                      [SPH][rank=0]
Info: time since start : 87.81213554200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001076258 s
sph::RenderFieldGetter compute custom field took :  0.000978115 s
rho_t_ampl=0.000985873, rho_t_phi=3.14159 rad
eps_t_ampl=-2.6869e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.22562e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 71.70s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 59.75166397880438, dt = 1.2532178917754557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.90 us    (2.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 334.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.511819203870193e-21,-9.494226939706947e-22,-3.723395226994808e-22)
    sum a = (-3.5605204514440086e-23,1.7415048364372102e-23,3.4317759046265647e-23)
    sum e = 2.3988531852765873e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2532292292560154 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    | 2.9684e+04 | 1536 |      1 | 5.174e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87188.8193382447 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 61.00488187057984, dt = 1.2532292292560154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 279.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4220919722855118e-21,-8.783141687980646e-22,-2.890718836094007e-22)
    sum a = (1.5342510117663633e-23,-8.168013772651287e-23,5.881579404821149e-23)
    sum e = 2.3988685577695644e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.253241063939337 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    | 3.0895e+04 | 1536 |      1 | 4.972e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90745.33361026479 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 62.25811109983585, dt = 1.253241063939337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.5%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 278.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4593372382263229e-21,-1.0427731056117185e-21,-2.0001068853815551e-22)
    sum a = (-4.4704900170433686e-24,1.1143516424026401e-22,-3.255022554653275e-23)
    sum e = 2.3988820714805574e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2532532919642632 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    | 3.0732e+04 | 1536 |      1 | 4.998e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90268.27778957793 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 63.511352163775186, dt = 1.2532532919642632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 273.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4644161381273425e-21,-7.821129724612151e-22,-2.98056189660822e-22)
    sum a = (-6.359205917735064e-23,2.4238066717233687e-23,-6.9944946049464e-23)
    sum e = 2.3988955262933105e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2532659091339993 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    | 3.0903e+04 | 1536 |      1 | 4.970e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90773.04950413456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 64.76460545573944, dt = 1.2532659091339993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 281.51 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3543733069385827e-21,-8.063712499751104e-22,-4.0914833434703905e-22)
    sum a = (-3.750979197732247e-23,-2.7683944581037645e-23,5.0040752021254024e-24)
    sum e = 2.3989089215607396e-13
    sum de = -6.563322731438818e-28
Info: cfl dt = 1.2532789119155494 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    | 3.0091e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88388.7365706326 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 66.01787136487344, dt = 1.2532789119155494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.4%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 302.26 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3103561744630788e-21,-8.736092219150664e-22,-3.559113057938021e-22)
    sum a = (6.118487224509651e-23,1.7644018704586778e-22,-1.9835786379638357e-23)
    sum e = 2.3989222426480296e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.253292296672789 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    | 3.0375e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89223.72959273981 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 67.27115027678899, dt = 1.253292296672789 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.5%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 304.10 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.439021638622244e-21,-5.245629835188983e-22,-3.963369814094754e-22)
    sum a = (-5.758731814854091e-23,1.0368252028067207e-22,-3.0716841452133794e-23)
    sum e = 2.3989354748887275e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2533060596622085 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    | 2.6599e+04 | 1536 |      1 | 5.775e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78133.22036009269 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 68.52444257346177, dt = 1.2533060596622085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 309.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2815757416906338e-21,-4.402099703556859e-22,-4.416531561861718e-22)
    sum a = (-1.2998809434172256e-22,1.5735643210778717e-22,-6.21915490933303e-23)
    sum e = 2.3989486037188923e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2533201970345988 cfl multiplier : 0.9999999999820499          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0461e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89478.07218518855 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 69.77774863312398, dt = 1.2533201970345988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.5%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 264.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0834986455508661e-21,-2.0935603168249035e-22,-5.3932280165611485e-22)
    sum a = (5.174129274163804e-23,1.9453678067264572e-23,4.790161037470486e-23)
    sum e = 2.3989616146910983e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2533347048365746 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    | 2.8396e+04 | 1536 |      1 | 5.409e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83411.73988405861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 71.03106883015857, dt = 0.6709279444066851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 273.58 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2527953089181889e-21,-2.8273286761820603e-22,-4.381932825154022e-22)
    sum a = (1.886070640326581e-23,7.324359773602653e-23,-8.0906204662206e-24)
    sum e = 2.3986677603930637e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2533427085571045 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    | 2.3653e+04 | 1536 |      1 | 6.494e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37194.786852631005 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 64                                                      [SPH][rank=0]
Info: time since start : 88.65786767200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009130640000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008162130000000001 s
rho_t_ampl=0.00112733, rho_t_phi=3.14159 rad
eps_t_ampl=-3.77008e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.84536e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 83.65s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 71.70199677456526, dt = 1.2533427085571045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.80 us    (2.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 344.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.261260142086555e-21,-1.728754113159702e-22,-4.6711697885483e-22)
    sum a = (-9.731912883255948e-23,1.4195931828800672e-22,4.237594157383587e-23)
    sum e = 2.398977739865966e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2533576931972608 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    | 2.9682e+04 | 1536 |      1 | 5.175e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87191.24155854367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 72.95533948312236, dt = 1.2533576931972608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 282.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0564111794120945e-21,4.81106728905185e-23,-3.8237881769747854e-22)
    sum a = (5.412202707024102e-23,-8.323419267116405e-23,-1.0113694703547915e-22)
    sum e = 2.398992098043451e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2533731208339727 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    | 3.0389e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89269.90989454303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 74.20869717631962, dt = 1.2533731208339727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 286.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2223219095120709e-21,-1.9734944287839523e-22,-5.990776401404739e-22)
    sum a = (1.3247463908493012e-22,1.5705416461235548e-22,3.503755472034009e-23)
    sum e = 2.3990045979184337e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.2533889050305653 cfl multiplier : 0.999999999997636           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0142e+04 | 1536 |      1 | 5.096e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88544.89242494825 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 75.46207029715359, dt = 1.2533889050305653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.3%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 325.18 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.445793505156937e-21,1.5009599967494663e-22,-4.69823227672791e-22)
    sum a = (-4.827600166333815e-23,1.9119027444272364e-22,3.532986328973676e-23)
    sum e = 2.3990168971494465e-13
    sum de = -6.184669496932733e-28
Info: cfl dt = 1.2534050404612653 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    | 3.1164e+04 | 1536 |      1 | 4.929e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91548.9156024804 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 76.71545920218415, dt = 1.2534050404612653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 286.85 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.268032008621248e-21,4.1114248550143296e-22,-4.253574107877483e-22)
    sum a = (2.835719111402657e-23,7.023691317395589e-23,1.2018465512662915e-24)
    sum e = 2.399029001290281e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2534215226149974 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    | 3.0900e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90772.51491586633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 77.96886424264541, dt = 1.2534215226149974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 281.84 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3476014404038898e-21,4.233722681488346e-22,-4.45239104553944e-22)
    sum a = (3.131988272295472e-23,1.368976745776501e-22,-1.0175194513569166e-22)
    sum e = 2.3990408971529015e-13
    sum de = 0
Info: cfl dt = 1.253438346890122 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    | 3.0929e+04 | 1536 |      1 | 4.966e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90861.71971119585 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 79.22228576526041, dt = 1.253438346890122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 278.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.386539672978374e-21,6.3673917585992965e-22,-6.373011436254403e-22)
    sum a = (-1.2297815437416936e-22,5.2323870004861285e-23,3.7319781581710013e-23)
    sum e = 2.3990525716766487e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.253455193466371 cfl multiplier : 0.9999999999995332           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1241e+04 | 1536 |      1 | 4.917e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91777.81469834912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 80.47572411215053, dt = 1.253455193466371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 274.56 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1309017112937166e-21,6.493248286908256e-22,-5.03363551964881e-22)
    sum a = (8.509802594573087e-23,-2.141725431963659e-22,-6.800983588704299e-24)
    sum e = 2.3990640117938187e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.2534721945021998 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    | 3.1143e+04 | 1536 |      1 | 4.932e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91491.21363175227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 81.7291793056169, dt = 1.2534721945021998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.89 us   (8.2%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 287.51 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3662240733742952e-21,2.1384966772772845e-22,-5.395400969100329e-22)
    sum a = (1.459919195506648e-22,-9.003850174844522e-23,-3.056948210744826e-23)
    sum e = 2.399075205042896e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.2534895235968544 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    | 2.9155e+04 | 1536 |      1 | 5.268e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85652.13975103876 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 82.98265150011909, dt = 0.6696780702070413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 270.92 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5185910704048859e-21,2.3133607870693095e-22,-5.749083846938698e-22)
    sum a = (2.3992511511587783e-23,2.631645605254273e-23,-2.9137377949945117e-23)
    sum e = 2.39871428403429e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.2534989799783778 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    | 3.1572e+04 | 1536 |      1 | 4.865e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49554.623437633505 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 89.47152226700001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001035682 s
sph::RenderFieldGetter compute custom field took :  0.0009658220000000001 s
rho_t_ampl=0.00124078, rho_t_phi=3.14159 rad
eps_t_ampl=-4.98092e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.41978e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 95.60s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 83.65232957032613, dt = 1.2534989799783778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.0%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 413.29 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5058938206523366e-21,3.0328592067224696e-22,-6.109525338591817e-22)
    sum a = (2.6214530218283894e-23,-8.500624910235039e-23,2.6592672558437795e-24)
    sum e = 2.3990888706427554e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2535167403832925 cfl multiplier : 0.999999999999908           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0647e+04 | 1536 |      1 | 5.012e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90037.5220080359 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 84.9058285503045, dt = 1.2535167403832925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 274.56 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5262094202564153e-21,1.2694997148019546e-22,-5.876905666706834e-22)
    sum a = (2.5394499505098424e-23,-6.089674165137196e-23,5.318642892447346e-23)
    sum e = 2.399100782086595e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.253534878007101 cfl multiplier : 0.9999999999999387           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0951e+04 | 1536 |      1 | 4.963e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90931.63532697539 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 86.1593452906878, dt = 1.253534878007101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 280.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5668406194645729e-21,6.572418036382607e-23,-4.893512014792729e-22)
    sum a = (-6.576117267674446e-23,1.7043704441046713e-23,5.1101736625142324e-23)
    sum e = 2.3991110306774946e-13
    sum de = 1.3883951931889808e-28
Info: cfl dt = 1.2535533272222172 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    | 3.1378e+04 | 1536 |      1 | 4.895e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92188.06931357841 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 87.4128801686949, dt = 1.2535533272222172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 281.34 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4339427387212245e-21,1.3594757661897291e-22,-4.265990667597927e-22)
    sum a = (-1.6321256452755965e-23,-6.74943736172406e-23,1.746209711207349e-23)
    sum e = 2.399120955574826e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2535720818750689 cfl multiplier : 0.9999999999999728          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0994e+04 | 1536 |      1 | 4.956e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91060.69223683179 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 88.66643349591712, dt = 1.2535720818750689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 278.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.439021638622244e-21,-1.659900879109298e-24,-4.257936103479776e-22)
    sum a = (-5.182065055259147e-23,1.5721908652139827e-22,-6.989464197685344e-24)
    sum e = 2.3991305695083244e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2535911367347348 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    | 3.0849e+04 | 1536 |      1 | 4.979e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90635.55163070941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 89.92000557779218, dt = 1.2535911367347348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.4%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3467549570870531e-21,3.3627872391517053e-22,-4.498814380249751e-22)
    sum a = (-9.443579503458477e-23,1.883385985214818e-23,1.4587595443713614e-23)
    sum e = 2.399139862034541e-13
    sum de = -6.310887241768094e-29
Info: cfl dt = 1.2536104864910984 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    | 3.1195e+04 | 1536 |      1 | 4.924e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91653.57880728025 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 91.17359671452692, dt = 1.2536104864910984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (1.3%)
   patch tree reduce : 1.03 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 277.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.19 us   (95.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2096246597595217e-21,2.7314462543853035e-22,-4.180698700424134e-22)
    sum a = (-1.477906965989426e-22,4.76582532869596e-23,-7.992729573290403e-24)
    sum e = 2.3991488229866895e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.253630125752818 cfl multiplier : 0.999999999999992            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0760e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90378.16786336098 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 92.42720720101802, dt = 1.253630125752818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (1.2%)
   patch tree reduce : 952.00 ns  (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.3%)
   LB compute        : 314.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.82767130847309e-22,3.509516525029146e-22,-4.422432627372079e-22)
    sum a = (1.6744498111174275e-22,-1.935018290129499e-23,4.2423597569504513e-23)
    sum e = 2.3991574425615827e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2536500490487439 cfl multiplier : 0.9999999999999947          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0527e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89693.17534543411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 93.68083732677084, dt = 1.2536500490487439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 273.38 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.386539672978374e-21,2.847006933366919e-22,-3.574572042955769e-22)
    sum a = (1.4379635344761984e-22,1.2325557088843657e-23,-5.468326127612594e-23)
    sum e = 2.399165711336536e-13
    sum de = 1.3883951931889808e-28
Info: cfl dt = 1.2536702508294522 cfl multiplier : 0.9999999999999964          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0645e+04 | 1536 |      1 | 5.012e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90041.98277211955 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 94.93448737581959, dt = 0.668174990267417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.7%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 272.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4754204212462184e-21,3.1278405867073594e-22,-4.548642010438738e-22)
    sum a = (-3.1187619704699e-23,2.0381279042343423e-23,1.6243797317464973e-23)
    sum e = 2.398750311745017e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.2536811738591247 cfl multiplier : 0.9999999999999977          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0823e+04 | 1536 |      1 | 4.983e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48269.14052989082 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 84                                                      [SPH][rank=0]
Info: time since start : 90.445689481 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009135040000000001 s
sph::RenderFieldGetter compute custom field took :  0.000966093 s
rho_t_ampl=0.00132346, rho_t_phi=3.14159 rad
eps_t_ampl=-6.28891e-06, eps_t_phi=6.28319 rad
vx_t_ampl=9.59577e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 107.55s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 95.602662366087, dt = 1.2536811738591247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.60 us    (2.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 338.17 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3848467063447007e-21,3.410259329657208e-22,-4.1080381481191965e-22)
    sum a = (-1.655139410452092e-22,4.92478054816031e-23,2.6416579837256464e-23)
    sum e = 2.399175576905134e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.253701750564668 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    | 3.0464e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89512.85546161329 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 96.85634353994612, dt = 1.253701750564668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.7%)
   patch tree reduce : 1.14 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 299.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0843451288677027e-21,4.2086381734322847e-22,-3.7130858946082948e-22)
    sum a = (-5.629114056963484e-23,-2.7533240300641826e-23,1.642482772819586e-23)
    sum e = 2.3991838554961664e-13
    sum de = 0
Info: cfl dt = 1.253722631310854 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    | 3.0757e+04 | 1536 |      1 | 4.994e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90374.57426666633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 98.1100452905108, dt = 1.253722631310854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.4%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 277.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0919634787192323e-21,3.382200970300053e-22,-3.5697974977781736e-22)
    sum a = (1.4548932008129306e-24,1.6972596923346293e-22,-1.186730674240029e-22)
    sum e = 2.399190842663717e-13
    sum de = -2.398137151871876e-28
Info: cfl dt = 1.2537437714286075 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    | 3.1106e+04 | 1536 |      1 | 4.938e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91401.28288442935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 99.36376792182165, dt = 1.2537437714286075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (0.9%)
   patch tree reduce : 1.07 us    (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 464.04 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1207439114916772e-21,6.746707628689083e-22,-5.904530131944459e-22)
    sum a = (1.352786150719514e-22,1.107570127384096e-22,-2.8427503422124956e-23)
    sum e = 2.399197413928287e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2537651639383482 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0832e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90598.87119173199 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 100.61751169325025, dt = 1.2537651639383482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 270.16 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3797678064436811e-21,7.765740452498247e-22,-5.695220197995645e-22)
    sum a = (2.3727985475076341e-23,2.316086257721862e-23,-3.884906851248286e-23)
    sum e = 2.399203589466931e-13
    sum de = -1.3883951931889808e-28
Info: cfl dt = 1.2537868028838823 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1050e+04 | 1536 |      1 | 4.947e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91241.92412463197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 101.8712768571886, dt = 1.2537868028838823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (1.4%)
   patch tree reduce : 1.15 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 268.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3387133655771053e-21,7.5069761237195695e-22,-6.247635668370386e-22)
    sum a = (-2.0844651677101624e-23,1.0238874836457362e-22,-2.4990387386899488e-23)
    sum e = 2.399209362607636e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.2538086822432204 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0956e+04 | 1536 |      1 | 4.962e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90966.11726737091 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 103.12506366007248, dt = 1.2538086822432204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 276.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.281998983349052e-21,9.28737274567915e-22,-6.474088157648703e-22)
    sum a = (9.932952671004644e-23,-4.31849733468749e-24,-1.2181933573186438e-22)
    sum e = 2.3992147270720756e-13
    sum de = 6.310887241768095e-30
Info: cfl dt = 1.253830795928365 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1133e+04 | 1536 |      1 | 4.934e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91488.19107774152 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 104.3788723423157, dt = 1.253830795928365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.3%)
   patch tree reduce : 1.02 us    (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 277.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4800760794888198e-21,8.564080030689778e-22,-8.608521385086683e-22)
    sum a = (-3.174312438137303e-25,1.1952695499049026e-23,-2.604426697896149e-23)
    sum e = 2.3992196770329525e-13
    sum de = -6.310887241768095e-30
Info: cfl dt = 1.2538531377869746 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1154e+04 | 1536 |      1 | 4.930e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91551.56455551663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 105.63270313824407, dt = 1.2538531377869746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.6%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 269.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.414050380775564e-21,8.815958416080517e-22,-8.334649590395634e-22)
    sum a = (-4.348808040248105e-23,4.368771489566078e-23,-7.514261905651887e-23)
    sum e = 2.399224207120326e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2538757016037763 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8531e+04 | 1536 |      1 | 5.384e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83845.81314717747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 106.88655627603104, dt = 0.6664388858168451 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.4%)
   patch tree reduce : 1.05 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 290.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3632613817653671e-21,9.306001165156604e-22,-9.143239837669504e-22)
    sum a = (2.0976914695357345e-23,-4.141117644286531e-24,-3.572899246557962e-23)
    sum e = 2.3987722994757444e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2538878041594934 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5456e+04 | 1536 |      1 | 6.034e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39761.740943379074 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 94                                                      [SPH][rank=0]
Info: time since start : 91.26739225600001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001028429 s
sph::RenderFieldGetter compute custom field took :  0.000830881 s
rho_t_ampl=0.00137335, rho_t_phi=3.14159 rad
eps_t_ampl=-7.66118e-06, eps_t_phi=6.28319 rad
vx_t_ampl=4.7633e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 119.50s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 107.55299516184789, dt = 1.2538878041594934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.15 us    (2.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 352.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4064320309240343e-21,9.094586996913475e-22,-9.459907449791564e-22)
    sum a = (-3.936147423290256e-23,1.4426668797367098e-22,9.145845492475304e-23)
    sum e = 2.3992293179520606e-13
    sum de = -1.5777218104420236e-29
Info: cfl dt = 1.2539106773186883 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1067e+04 | 1536 |      1 | 4.944e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91298.794534781 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 108.80688296600738, dt = 1.2539106773186883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 282.18 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3192442492898632e-21,1.1833931833420238e-21,-7.515706172551477e-22)
    sum a = (2.3886701096983207e-23,2.4038545241769754e-25,2.173813796171155e-23)
    sum e = 2.3992331395260503e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2539337736933576 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1658e+04 | 1536 |      1 | 4.852e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93038.94730109767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 110.06079364332606, dt = 1.2539337736933576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 282.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3956393686343675e-21,1.0934125854129965e-21,-7.680239568210201e-22)
    sum a = (-1.334798380236736e-22,-2.520577283603168e-23,7.213139677002063e-23)
    sum e = 2.399236180639885e-13
    sum de = 0
Info: cfl dt = 1.2539570707570586 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1472e+04 | 1536 |      1 | 4.881e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92492.82044128983 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 111.31472741701943, dt = 1.2539570707570586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 265.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (4.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.124553086417442e-21,1.0458437775753945e-21,-6.459793772244463e-22)
    sum a = (-3.4388384746487453e-25,-1.7135623363841326e-23,-8.221969400337995e-23)
    sum e = 2.3992387535093695e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2539800568300215 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1972e+04 | 1536 |      1 | 4.804e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93965.8541724953 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 112.56868448777648, dt = 1.2539800568300215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (1.4%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 280.68 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2083549347842667e-21,1.029401004474616e-21,-8.458560546106303e-22)
    sum a = (5.2640681265776946e-23,-2.6054716709995026e-23,6.611173441897671e-23)
    sum e = 2.399240884773433e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.254002884914894 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2202e+04 | 1536 |      1 | 4.770e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94641.35148984776 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 113.8226645446065, dt = 1.254002884914894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.5%)
   patch tree reduce : 842.00 ns  (0.3%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.3%)
   LB compute        : 261.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3076051036833598e-21,9.911530195266539e-22,-6.699494224011791e-22)
    sum a = (8.015138906296691e-23,1.052759635138165e-22,1.8084263343164342e-23)
    sum e = 2.3992425723407415e-13
    sum de = 2.3665827156630354e-29
Info: cfl dt = 1.2540242740269425 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2288e+04 | 1536 |      1 | 4.757e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94895.52993334162 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 115.0766674295214, dt = 1.2540242740269425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (1.1%)
   patch tree reduce : 521.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.2%)
   LB compute        : 267.05 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.426536009698904e-21,1.2055195463304097e-21,-6.773846108330483e-22)
    sum a = (-3.6372330020323264e-23,-3.02445805096426e-23,4.433667898345561e-23)
    sum e = 2.3992438130784156e-13
    sum de = 7.888609052210118e-31
Info: cfl dt = 1.254036604642457 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1416e+04 | 1536 |      1 | 4.889e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92334.99369406154 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 116.33069170354834, dt = 1.254036604642457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.4%)
   patch tree reduce : 1.05 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.3%)
   LB compute        : 277.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3067057151592208e-21,1.0826319094593592e-21,-6.053242092270952e-22)
    sum a = (-2.679648749860907e-23,2.943525095960409e-23,-1.9421447335999345e-23)
    sum e = 2.3992445977922954e-13
    sum de = -7.888609052210118e-31
Info: cfl dt = 1.254039883131418 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1861e+04 | 1536 |      1 | 4.821e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93644.60703400245 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 117.58472830819079, dt = 1.254039883131418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.5%)
   patch tree reduce : 1.04 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 269.67 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.279902614509699e-21,1.156961245787482e-21,-6.696569908986107e-22)
    sum a = (8.155337705647754e-23,-4.414551414249151e-23,-2.812974033107476e-23)
    sum e = 2.3992449257842404e-13
    sum de = -3.3719181466331725e-30
Info: cfl dt = 1.2540386832567267 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1709e+04 | 1536 |      1 | 4.844e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93197.56765208175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 118.8387681913222, dt = 0.6645597662865583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.5%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 304.06 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4021070302270723e-21,1.0814812212005343e-21,-6.938111579233725e-22)
    sum a = (-6.681927682279023e-23,-4.6657826924900253e-23,-2.4668822454629464e-23)
    sum e = 2.3987781862344867e-13
    sum de = 7.099748146989106e-30
Info: cfl dt = 1.2540381122896522 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1952e+04 | 1536 |      1 | 4.807e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49766.537437539424 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 104                                                     [SPH][rank=0]
Info: time since start : 92.058615943 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00093782 s
sph::RenderFieldGetter compute custom field took :  0.000811354 s
rho_t_ampl=0.00138927, rho_t_phi=3.14159 rad
eps_t_ampl=-9.06331e-06, eps_t_phi=6.28319 rad
vx_t_ampl=-1.78491e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 131.45s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 119.50332795760876, dt = 1.2540381122896522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.74 us    (2.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 347.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2699895012914328e-21,1.0221186853538424e-21,-7.23596808079415e-22)
    sum a = (-7.753258130150363e-23,-2.3372444657496644e-23,1.8486909918803875e-23)
    sum e = 2.3992447654281494e-13
    sum de = -1.5777218104420236e-30
Info: cfl dt = 1.2540371559795673 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1964e+04 | 1536 |      1 | 6.993e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64555.06638689577 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 120.75736606989841, dt = 1.2540371559795673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.3%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 339.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1667714418446681e-21,1.007400704675505e-21,-6.733540695624024e-22)
    sum a = (-5.369878541182271e-24,1.189650309075591e-23,-2.0170564075698356e-23)
    sum e = 2.399243721939419e-13
    sum de = 1.8932661725304283e-29
Info: cfl dt = 1.2540329922021318 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2601e+04 | 1536 |      1 | 6.796e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66426.58753871318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 122.01140322587798, dt = 1.2540329922021318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (1.2%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.3%)
   LB compute        : 301.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2043341390292927e-21,1.0444496426985928e-21,-7.228875767568366e-22)
    sum a = (9.644619291207172e-23,-3.7899483519537724e-23,7.808559930568329e-23)
    sum e = 2.399242494949432e-13
    sum de = -4.733165431326071e-29
Info: cfl dt = 1.254024122620023 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2945e+04 | 1536 |      1 | 6.694e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67437.59321537573 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 123.26543621808011, dt = 1.254024122620023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (1.1%)
   patch tree reduce : 691.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.2%)
   LB compute        : 284.14 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3886558812704655e-21,9.657010682730006e-22,-5.633581163147656e-22)
    sum a = (-1.0245093394088146e-22,-8.880580137688464e-23,-4.265230744680357e-23)
    sum e = 2.3992407876675295e-13
    sum de = 3.470987982972452e-29
Info: cfl dt = 1.2540010612987555 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2944e+04 | 1536 |      1 | 6.695e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67433.71351099641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 124.51946034070014, dt = 1.2540010612987555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (1.1%)
   patch tree reduce : 841.00 ns  (0.2%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 336.31 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1393665444620828e-21,8.224230205281704e-22,-6.925482789109622e-22)
    sum a = (-2.2220187066961123e-24,-6.418739129707071e-23,1.3052765720942546e-22)
    sum e = 2.3992386234661783e-13
    sum de = -3.470987982972452e-29
Info: cfl dt = 1.2539781874301206 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3035e+04 | 1536 |      1 | 6.668e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67700.53391620847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 125.77346140199889, dt = 1.2539781874301206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.9%)
   patch tree reduce : 1.03 us    (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 318.31 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1926949934227894e-21,7.573343226348698e-22,-4.2028551417650757e-22)
    sum a = (1.5474773135919354e-23,1.3222489576564463e-22,4.953065980056533e-23)
    sum e = 2.3992360197558216e-13
    sum de = -5.99534287967969e-29
Info: cfl dt = 1.2539555137693605 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2387e+04 | 1536 |      1 | 6.861e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65796.2955730559 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 127.02743958942901, dt = 1.2539555137693605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 314.46 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2269775677546722e-21,1.0462996716664446e-21,-4.089605042180432e-22)
    sum a = (-4.9281200602081634e-23,-1.2378610833715276e-23,-2.981782284251682e-23)
    sum e = 2.399232979590061e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2539326538945477 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2575e+04 | 1536 |      1 | 6.804e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66346.28896846964 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 128.28139510319838, dt = 1.2539326538945477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (1.3%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 295.04 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1215903948085138e-21,9.401135474256352e-22,-4.960997796080654e-22)
    sum a = (-7.753258130150363e-23,-7.291166793381513e-23,7.608878625140971e-23)
    sum e = 2.3992295061099823e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2539095664239663 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2552e+04 | 1536 |      1 | 6.811e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66279.0668899732 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 129.53532775709292, dt = 1.2539095664239663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 297.43 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0107010803029172e-21,8.107359295775492e-22,-3.3429144492696325e-22)
    sum a = (-4.491652099964284e-23,-6.499482860763906e-23,1.1620989803452415e-22)
    sum e = 2.399225603287614e-13
    sum de = -6.310887241768095e-30
Info: cfl dt = 1.253886698601361 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2197e+04 | 1536 |      1 | 6.920e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65232.50545332409 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 130.7892373235169, dt = 0.6644234298527465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.4%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 333.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0026594887929696e-21,7.725007576094805e-22,-2.319247429517025e-22)
    sum a = (7.800872816722422e-23,-3.6944290076416996e-23,-1.1414500519607081e-23)
    sum e = 2.398768502654586e-13
    sum de = -6.310887241768095e-30
Info: cfl dt = 1.2538746971157886 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3509e+04 | 1536 |      1 | 6.534e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36609.63638761977 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 114                                                     [SPH][rank=0]
Info: time since start : 93.03772914700001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001123487 s
sph::RenderFieldGetter compute custom field took :  0.000994165 s
rho_t_ampl=0.0013709, rho_t_phi=3.14159 rad
eps_t_ampl=-1.04602e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-5.10594e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 143.40s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 131.45366075336963, dt = 1.2538746971157886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.86 us    (2.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 345.50 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1431757193878474e-21,7.35486951950617e-22,-2.886354166436345e-22)
    sum a = (5.711117128282031e-23,4.4565513807005304e-23,-9.644559365957413e-23)
    sum e = 2.3992202193796257e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.2538521494500419 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2021e+04 | 1536 |      1 | 6.975e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64713.604645589636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 132.7075354504854, dt = 1.2538521494500419 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 344.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2028527932248288e-21,8.42485667109835e-22,-4.628730996368068e-22)
    sum a = (-2.9362390052770056e-24,-2.3652541306166997e-24,-1.3612723597117375e-23)
    sum e = 2.3992144230627133e-13
    sum de = -4.417621069237666e-29
Info: cfl dt = 1.253829866177048 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2615e+04 | 1536 |      1 | 6.792e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66458.72854631861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 133.96138759993545, dt = 1.253829866177048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 309.18 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1601053857245796e-21,8.101027203776499e-22,-4.280110529561962e-22)
    sum a = (4.375260643899249e-23,-1.5354799986986905e-23,3.313135023897125e-23)
    sum e = 2.399209075594918e-13
    sum de = -2.082592789783471e-28
Info: cfl dt = 1.2538078230895506 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2411e+04 | 1536 |      1 | 6.854e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65857.92688362898 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 135.2152174661125, dt = 1.2538078230895506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 310.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2299402593636005e-21,7.826899698783556e-22,-3.5716614891604233e-22)
    sum a = (8.755811808528728e-24,8.927727899640412e-24,-7.759102999468828e-24)
    sum e = 2.399203292765969e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2537860273523476 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3483e+04 | 1536 |      1 | 6.541e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69007.93642766206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 136.46902528920205, dt = 1.2537860273523476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.14 us   (7.3%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 318.04 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.226554326096254e-21,8.090921482537898e-22,-3.925287889211824e-22)
    sum a = (3.385933267346457e-24,-1.387209538667122e-22,-1.1944576551393514e-22)
    sum e = 2.3991971116417085e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2537644848827356 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2819e+04 | 1536 |      1 | 6.731e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67053.71797715718 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 137.72281131655438, dt = 1.2537644848827356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 367.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2316332259972735e-21,5.426226720178529e-22,-6.123012360435146e-22)
    sum a = (3.121407230835015e-24,-3.9978602626383035e-23,5.2041732732468096e-23)
    sum e = 2.3991905391269446e-13
    sum de = -3.155443620884047e-29
Info: cfl dt = 1.2537432015262104 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3230e+04 | 1536 |      1 | 6.612e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68260.5314692515 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 138.97657580143712, dt = 1.2537432015262104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 302.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.230786742680437e-21,5.543837475943109e-22,-4.395517999832363e-22)
    sum a = (-6.613150912786048e-23,-2.206221994524058e-22,1.466297392443422e-23)
    sum e = 2.399183582623557e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.25372218305243 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2842e+04 | 1536 |      1 | 6.724e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67120.38406919356 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 140.23031900296334, dt = 1.25372218305243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 324.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1021212785212717e-21,1.6453808796364121e-22,-4.446001866731564e-22)
    sum a = (-4.391132206089936e-24,5.960522040235664e-23,-7.34068593650683e-23)
    sum e = 2.3991762499505084e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.253701435153623 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3209e+04 | 1536 |      1 | 6.618e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68198.56403726971 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 141.48404118601576, dt = 1.253701435153623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 350.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1410595110957558e-21,4.1496034018777073e-22,-5.918380234355163e-22)
    sum a = (-3.0632115028024976e-23,9.978124237468982e-24,1.4799577714191457e-23)
    sum e = 2.3991685493359174e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2536809634430104 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9668e+04 | 1536 |      1 | 5.177e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87175.78861321007 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 142.7377426211694, dt = 0.66625092796113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 310.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.105507211788618e-21,3.9045489615851e-22,-5.266855226722498e-22)
    sum a = (9.454160544918935e-23,-7.915098853352831e-24,-7.382982967684215e-23)
    sum e = 2.398744321674431e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.253670245432971 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1439e+04 | 1536 |      1 | 4.886e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49092.23579403091 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 124                                                     [SPH][rank=0]
Info: time since start : 93.995507503 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009965 s
sph::RenderFieldGetter compute custom field took :  0.0009025350000000001 s
rho_t_ampl=0.00131877, rho_t_phi=3.14159 rad
eps_t_ampl=-1.1817e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-9.89597e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 155.35s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 143.40399354913052, dt = 1.253670245432971 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.5%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 346.64 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2604136587697185e-21,3.745882938310081e-22,-6.487684958229308e-22)
    sum a = (6.533793101832616e-23,7.925046349789319e-23,6.675907358188299e-23)
    sum e = 2.3991585193095644e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2536501572683514 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0841e+04 | 1536 |      1 | 4.980e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90619.39871953169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 144.6576637945635, dt = 1.2536501572683514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 313.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3171280409977716e-21,5.285899791028529e-22,-4.769499103010182e-22)
    sum a = (3.552584670348665e-23,-1.1541438562121347e-22,-8.46711966276039e-23)
    sum e = 2.399148581663972e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2536304103946352 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0476e+04 | 1536 |      1 | 5.040e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89546.27990081099 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 145.91131395183183, dt = 1.2536304103946352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.4%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 303.56 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3645311067406221e-21,2.6188366939985184e-22,-6.780165883096607e-22)
    sum a = (-2.8674622357840304e-23,7.480756917796929e-23,3.8490668941859345e-23)
    sum e = 2.399139681547722e-13
    sum de = 4.165185579566942e-28
Info: cfl dt = 1.2536109577506989 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3114e+04 | 1536 |      1 | 6.645e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67911.99994421289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 147.16494436222646, dt = 1.2536109577506989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 284.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2866546415916536e-21,4.749201262262737e-22,-5.525645339135645e-22)
    sum a = (4.2959028329458167e-23,8.695912419157546e-23,-2.6304506228363004e-23)
    sum e = 2.3991304272942046e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2535918057057547 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1980e+04 | 1536 |      1 | 6.988e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64580.57015109316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 148.41855531997717, dt = 1.2535918057057547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 321.42 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3814607730773544e-21,5.915537889434889e-22,-6.261536181761027e-22)
    sum a = (5.946545300777214e-23,8.189967625398283e-23,-1.0852012886803723e-23)
    sum e = 2.3991208576615257e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2535729594059988 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2264e+04 | 1536 |      1 | 6.899e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65415.438358613916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 149.67214712568293, dt = 1.2535729594059988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 326.81 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4720344879788721e-21,6.9104203127544225e-22,-6.300718485705751e-22)
    sum a = (-2.1400156353775653e-22,8.965740601078556e-24,-2.4661546564158938e-23)
    sum e = 2.3991109832003193e-13
    sum de = -1.6408306828597046e-28
Info: cfl dt = 1.253554423913497 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1986e+04 | 1536 |      1 | 6.986e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64597.23335158317 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 150.92572008508893, dt = 1.253554423913497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 308.65 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0107010803029172e-21,6.565523826556027e-22,-6.696420683666264e-22)
    sum a = (-9.782172830193123e-23,7.578007047699457e-23,-5.2897314235077e-24)
    sum e = 2.3991008148941894e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.253536204200701 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1870e+04 | 1536 |      1 | 7.023e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64253.2711966553 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 152.17927450900243, dt = 1.253536204200701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.2%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 359.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.743022976789429e-22,7.93386328157855e-22,-6.64131125932087e-22)
    sum a = (-4.258869187834215e-24,-2.515480507528587e-23,4.3182669145074697e-23)
    sum e = 2.3990903640416975e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2535183051492478 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1956e+04 | 1536 |      1 | 6.996e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64504.80470332196 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 153.43281071320314, dt = 1.2535183051492478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.5%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 300.82 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0123940469365905e-21,6.986182222899027e-22,-5.7961990518497e-22)
    sum a = (3.920275861099569e-23,7.386684200247029e-23,4.101846786881348e-24)
    sum e = 2.399079642246564e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2535007315487023 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1788e+04 | 1536 |      1 | 7.050e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64012.76767736486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 154.68632901835238, dt = 0.6679973265389947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 300.11 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0716478791151535e-21,8.099944300314531e-22,-6.0137414560051e-22)
    sum a = (-9.681652936318774e-23,1.7319119573021092e-22,7.935619626679668e-23)
    sum e = 2.3987069627677733e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2534915690101585 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2125e+04 | 1536 |      1 | 6.942e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34639.21261188675 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 134                                                     [SPH][rank=0]
Info: time since start : 94.96842676600001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010581240000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009712420000000001 s
rho_t_ampl=0.00123423, rho_t_phi=3.14159 rad
eps_t_ampl=-1.30998e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.44292e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 167.30s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 155.35432634489138, dt = 1.2534915690101585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 33.07 us   (8.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 348.26 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.023512157478307e-22,1.0602976455391524e-21,-4.767669704999901e-22)
    sum a = (3.9573095062111713e-23,-4.719698601079277e-23,1.1168162723272514e-22)
    sum e = 2.3990659669217025e-13
    sum de = -2.145701662201152e-28
Info: cfl dt = 1.2534744325556597 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0433e+04 | 1536 |      1 | 5.047e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89408.17906745548 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 156.60781791390153, dt = 1.2534744325556597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.4%)
   patch tree reduce : 3.21 us    (0.9%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 2.15 us    (0.6%)
   LB compute        : 325.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0327096465406693e-21,8.629591556919565e-22,-3.165170785872714e-22)
    sum a = (-7.665964538101587e-23,3.6944858394073564e-23,3.3167909176244086e-23)
    sum e = 2.3990528805361576e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2534577051584552 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0844e+04 | 1536 |      1 | 4.980e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90614.65114134448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 157.8612923464572, dt = 1.2534577051584552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 281.31 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.803426495100787e-22,9.620167165707146e-22,-3.241499763608305e-22)
    sum a = (-5.078899901019685e-24,-4.805251720304815e-23,1.3515664329845082e-23)
    sum e = 2.3990413234336034e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2534413183201984 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8268e+04 | 1536 |      1 | 5.434e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83044.57696014456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 159.11475005161566, dt = 1.2534413183201984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 328.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.260527486192559e-22,8.485044610843344e-22,-3.195255131083198e-22)
    sum a = (-9.845659078955869e-23,6.653606411424153e-23,-1.2501909769395677e-23)
    sum e = 2.3990295264671705e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.253425277462178 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0211e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88752.74382460323 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 160.36819136993586, dt = 1.253425277462178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 299.06 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.330545523805079e-22,1.0037531386251715e-21,-3.5150147401901167e-22)
    sum a = (8.40399217996851e-23,5.528522154658787e-23,-1.3097636608269494e-22)
    sum e = 2.399017527775412e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2534095868380588 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0498e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89595.54527694736 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 161.62161664739804, dt = 1.2534095868380588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.6%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 289.17 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.49754281490681e-22,1.0660006615575663e-21,-5.899179460543535e-22)
    sum a = (-4.232416584183071e-24,1.0598174300356633e-22,2.3437851530681114e-23)
    sum e = 2.399005340492762e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.253394055103661 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1045e+04 | 1536 |      1 | 4.948e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91200.88150268022 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 162.8750262342361, dt = 1.253394055103661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 295.07 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.803426495100787e-22,1.2305883481530534e-21,-4.637689519310676e-22)
    sum a = (-5.1079977650359437e-23,-3.544488404096893e-23,-4.538062449099408e-23)
    sum e = 2.398992977941433e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.2533786073867987 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0919e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90829.8228570747 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 164.12842028933974, dt = 1.2533786073867987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.8%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 286.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.0754508426212995e-22,1.0975350583632545e-21,-5.637763902213601e-22)
    sum a = (7.591897247878383e-24,-4.2776995538244064e-23,-7.533890019612026e-23)
    sum e = 2.398980453723594e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2533635228110223 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0902e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90777.20215721805 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 165.38179889672654, dt = 1.2533635228110223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 277.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.295536504998819e-22,1.0393459434816501e-21,-6.76977950517368e-22)
    sum a = (-1.798777048277805e-22,-1.1781907647648732e-22,-1.9597524534590646e-23)
    sum e = 2.3989677818574863e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2533488053564246 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0821e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90539.29100131516 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 166.63516241953755, dt = 0.6694967211147116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 282.59 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.908453551519567e-22,9.13433203389932e-22,-6.551663254525654e-22)
    sum a = (-5.0656735991941126e-23,-3.6062286906044914e-23,4.0380936609569043e-23)
    sum e = 2.398660127073043e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2533411840013016 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0947e+04 | 1536 |      1 | 4.963e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48560.66734339293 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 144                                                     [SPH][rank=0]
Info: time since start : 95.78797438800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008680200000000001 s
sph::RenderFieldGetter compute custom field took :  0.000856228 s
rho_t_ampl=0.00111948, rho_t_phi=3.14159 rad
eps_t_ampl=-1.42768e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.85929e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 179.25s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 167.30465914065226, dt = 1.2533411840013016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.47 us    (2.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 491.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.3%)
   LB compute        : 296.32 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.976172216866496e-22,8.95556203184943e-22,-5.844775430146787e-22)
    sum a = (3.16637665704196e-23,1.4564697010759385e-22,-6.956835077496768e-24)
    sum e = 2.398951824343426e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2533269461829757 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7078e+04 | 1536 |      1 | 5.673e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79541.13132878982 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 168.55800032465356, dt = 1.2533269461829757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 301.49 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.856514866376575e-22,1.1920055724401314e-21,-6.228619212845329e-22)
    sum a = (1.425795336796672e-23,5.925024144427831e-23,7.685836798736238e-23)
    sum e = 2.3989368869693894e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2533131771831147 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4008e+04 | 1536 |      1 | 6.398e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70524.28345014856 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 169.81132727083653, dt = 1.2533131771831147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 334.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.04274119608063e-22,1.2120921916938549e-21,-4.740103896585975e-22)
    sum a = (-1.455686778922465e-22,-4.4450000014230356e-23,-2.0950064158933705e-23)
    sum e = 2.398923826641816e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2532997875524543 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3881e+04 | 1536 |      1 | 6.432e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70148.37097703175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 171.06464044801965, dt = 1.2532997875524543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.4%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 301.28 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.181627585172874e-22,1.0914336000023453e-21,-5.615593990424365e-22)
    sum a = (-1.0766209686015686e-23,-7.324326837011192e-23,-9.015394707454573e-25)
    sum e = 2.3989106623393994e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2532867817791247 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4156e+04 | 1536 |      1 | 6.359e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70955.17636173281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 172.3179402355721, dt = 1.2532867817791247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 302.98 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.67258790893811e-22,9.815693238882306e-22,-5.501258806784895e-22)
    sum a = (-2.780168643735255e-23,-5.457005189919431e-23,5.863553190741393e-23)
    sum e = 2.398897429349935e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.253274163250418 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4114e+04 | 1536 |      1 | 6.370e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70832.73796621527 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 173.57122701735125, dt = 1.253274163250418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 324.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.164697918836142e-22,9.24909500155208e-22,-4.3933097119818045e-22)
    sum a = (1.1118029314575905e-22,-8.007060399971686e-23,-3.0214100664674045e-23)
    sum e = 2.3988841420818874e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2532619352517391 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2519e+04 | 1536 |      1 | 6.821e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66147.29868773668 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 174.82450118060166, dt = 1.2532619352517391 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (0.2%)
   patch tree reduce : 1.63 us    (0.1%)
   gen split merge   : 722.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.0%)
   LB compute        : 2.36 ms    (99.2%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.551780872315394e-22,8.0856681607815535e-22,-5.328736279277679e-22)
    sum a = (-2.9891442125792936e-24,-1.2339577743757387e-23,4.516731432682099e-24)
    sum e = 2.3988708151320513e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2532501009591426 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0229e+04 | 1536 |      1 | 7.593e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59419.979063619234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 176.0777631158534, dt = 1.2532501009591426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (0.4%)
   patch tree reduce : 1.71 us    (0.1%)
   gen split merge   : 1.19 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.1%)
   LB compute        : 1.57 ms    (98.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.806875553499173e-22,8.355244991302636e-22,-5.054496188799031e-22)
    sum a = (2.169113499393824e-24,1.2353963284439253e-22,-2.1083860654828997e-24)
    sum e = 2.398857463133169e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2532386634386847 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4746e+04 | 1536 |      1 | 1.042e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43312.18489015631 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 177.33101321681255, dt = 1.2532386634386847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 295.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.874594218846102e-22,1.0755033460973079e-21,-5.122433944011782e-22)
    sum a = (9.739848664351292e-23,-6.09414127108092e-23,2.1530874576815518e-24)
    sum e = 2.39884410073678e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2532276256457744 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9593e+04 | 1536 |      1 | 5.190e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86923.87702955255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 178.58425188025123, dt = 0.6707400561619181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.3%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 330.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.381334522815276e-22,9.190006498146336e-22,-5.0812891070776955e-22)
    sum a = (4.2429976256435283e-23,-1.6156483081282508e-22,8.619343050105464e-23)
    sum e = 2.398608561151828e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2532219886872908 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0416e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47816.04642906354 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 154                                                     [SPH][rank=0]
Info: time since start : 96.768894539 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001048156 s
sph::RenderFieldGetter compute custom field took :  0.000950704 s
rho_t_ampl=0.000977439, rho_t_phi=3.14159 rad
eps_t_ampl=-1.53188e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.22837e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 191.21s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 179.25499193641315, dt = 1.2532219886872908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.50 us    (2.1%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 379.67 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.550631186182599e-22,6.828202314031209e-22,-3.719247961170769e-22)
    sum a = (8.888074826784449e-23,-6.127755968835854e-23,-2.3233369285574988e-23)
    sum e = 2.398827450233715e-13
    sum de = 5.301145283085199e-28
Info: cfl dt = 1.253211462350348 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9843e+04 | 1536 |      1 | 5.147e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87656.19706899287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 180.50821392510045, dt = 1.253211462350348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 290.80 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.769567162427323e-22,6.6884581688054e-22,-4.696091566369482e-22)
    sum a = (7.232141838222822e-23,-6.322932074581362e-23,6.0149585369148e-23)
    sum e = 2.3988121362744917e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2532014513096246 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0447e+04 | 1536 |      1 | 5.045e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89430.80527310196 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 181.7614253874508, dt = 1.2532014513096246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 282.38 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.514472481243543e-22,5.883794765053516e-22,-3.419813716877496e-22)
    sum a = (-2.341055423126261e-23,-5.655044518767657e-23,-3.804984552428289e-23)
    sum e = 2.398798870232426e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531918486886653 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0473e+04 | 1536 |      1 | 5.040e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89505.60042655034 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 183.01462683876042, dt = 1.2531918486886653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 282.16 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.718778163417125e-22,5.217296616747015e-22,-4.511969625992273e-22)
    sum a = (7.655383496641129e-23,2.4549269070368336e-23,2.762285792103285e-23)
    sum e = 2.39878564417499e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531826578012777 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0360e+04 | 1536 |      1 | 5.059e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89173.27212624319 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 184.26781868744908, dt = 1.2531826578012777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 284.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0479463462437283e-21,6.033037048277815e-22,-3.7543022777430047e-22)
    sum a = (-3.899113778178654e-23,4.931071437129201e-23,6.231171998910963e-24)
    sum e = 2.3987724885933223e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.2531738809723398 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0970e+04 | 1536 |      1 | 4.960e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90963.9948980766 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 185.52100134525037, dt = 1.2531738809723398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 287.79 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.90500449312118e-22,6.80641198177358e-22,-3.810253306867002e-22)
    sum a = (1.000172944049762e-22,-2.4022012364487788e-23,4.7686651691874983e-23)
    sum e = 2.3987594177418794e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2531655204201986 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0918e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90811.17299707499 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 186.7741752262227, dt = 1.2531655204201986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.4%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 297.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1105861116896378e-21,6.04604015626008e-22,-2.952906008150088e-22)
    sum a = (-8.607677228082321e-23,-3.137829350755501e-23,-1.8367324027196687e-23)
    sum e = 2.398746445911026e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.253157578248555 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0673e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90090.08504553972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 188.0273407466429, dt = 1.253157578248555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.7%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 278.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.955793492131379e-22,5.606472281525833e-22,-3.5969603454070816e-22)
    sum a = (-1.735290799515059e-23,5.881073815109596e-23,3.9051622261058296e-24)
    sum e = 2.3987335872749427e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2531500564461142 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0804e+04 | 1536 |      1 | 4.986e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90473.17935684437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 189.28049832489145, dt = 1.2531500564461142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 301.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.48061314857008e-22,6.908651294885252e-22,-3.4084681280927147e-22)
    sum a = (-8.806071755465902e-23,-5.455772005186231e-23,1.9698047107398997e-23)
    sum e = 2.398720855876596e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.253142956886229 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0547e+04 | 1536 |      1 | 5.028e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89719.99376334979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 190.53364838133757, dt = 0.6716763508364352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 271.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.397114503019212e-22,5.831782333124454e-22,-3.1772067311945575e-22)
    sum a = (-5.970352644063244e-23,-1.0552722449957123e-24,-2.664172335518075e-23)
    sum e = 2.398557482011872e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.253139445578363 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0919e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48673.80318089721 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 164                                                     [SPH][rank=0]
Info: time since start : 97.59157715 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010132610000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009628670000000001 s
rho_t_ampl=0.000811706, rho_t_phi=3.14159 rad
eps_t_ampl=-1.62e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.54105e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 203.16s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 191.205324732174, dt = 1.253139445578363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.08 us    (2.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 370.10 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.482912520835669e-22,5.998094812142382e-22,-3.6666913151543494e-22)
    sum a = (5.782539158140121e-23,2.3485585078239903e-23,7.518395860531252e-25)
    sum e = 2.3987051671943847e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.253132876409297 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9191e+04 | 1536 |      1 | 5.262e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85734.36361646984 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 192.45846417775238, dt = 1.253132876409297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.4%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 336.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.955793492131379e-22,6.4463507138883025e-22,-3.485629994739976e-22)
    sum a = (6.269267065321174e-24,-2.8965697870330714e-23,-6.266259695837709e-25)
    sum e = 2.3986909803615953e-13
    sum de = -5.301145283085199e-28
Info: cfl dt = 1.2531268559982673 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9912e+04 | 1536 |      1 | 5.135e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87851.23633537926 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 193.71159705416167, dt = 1.2531268559982673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (1.2%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 334.36 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.023512157478307e-22,5.754482865392626e-22,-3.502119415584973e-22)
    sum a = (-6.476920003982656e-23,1.394916410451817e-22,6.56184895844175e-24)
    sum e = 2.3986788201287964e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.253121262803323 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0090e+04 | 1536 |      1 | 5.105e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88373.53313314034 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 194.96472391015993, dt = 1.253121262803323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.3%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 300.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.313615857468346e-22,8.557681807181658e-22,-3.374851136123999e-22)
    sum a = (-2.2749239139984006e-23,3.335679132748952e-24,1.5593409542593842e-23)
    sum e = 2.3986668377160726e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2531160989002605 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9699e+04 | 1536 |      1 | 5.172e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87225.73230470944 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 196.21784517296325, dt = 1.2531160989002605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 291.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.364404856478543e-22,7.746239923744169e-22,-3.122859407756484e-22)
    sum a = (1.4563480940137436e-22,1.5080011618973548e-22,-5.2526413744447825e-24)
    sum e = 2.3986550573503195e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.2531113655102488 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0201e+04 | 1536 |      1 | 5.086e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88700.5597861737 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 197.4709612718635, dt = 1.2531113655102488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 314.06 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0327096465406693e-21,1.056011083781871e-21,-3.319293463823327e-22)
    sum a = (1.13468443361583e-22,4.585181040847332e-23,-7.03534987350982e-23)
    sum e = 2.398643491729585e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531070637458714 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0480e+04 | 1536 |      1 | 5.039e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89519.50340571506 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 198.72407263737375, dt = 1.2531070637458714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.6%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 278.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1444454443631024e-21,1.0476975264406347e-21,-4.608791247379766e-22)
    sum a = (4.649045091688592e-23,-8.298448487173209e-24,-2.2822588921289924e-23)
    sum e = 2.3986321534326673e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2531031946025233 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0732e+04 | 1536 |      1 | 4.998e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90258.53394243908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 199.9771797011196, dt = 1.2531031946025233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 298.27 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1630680773335079e-21,1.0033852821056477e-21,-4.5969752440739765e-22)
    sum a = (1.5219505510685812e-22,3.49194372330799e-23,5.900467765052523e-23)
    sum e = 2.3986210547829037e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2530997589583321 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6545e+04 | 1536 |      1 | 5.786e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77960.3051892368 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 201.23028289572213, dt = 1.2530997589583321 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 356.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.423784938919185e-21,1.074210475093858e-21,-3.344897724927077e-22)
    sum a = (-1.2629795613238794e-22,1.6844951486050183e-23,4.8466239994777965e-23)
    sum e = 2.398610207834414e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.253096757574089 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7519e+04 | 1536 |      1 | 5.582e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80821.98980464137 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 202.48338265468047, dt = 0.6722748732544233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.5%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 278.29 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1630680773335079e-21,1.0741774093392942e-21,-3.085099939862018e-22)
    sum a = (-7.996622083740889e-23,1.2222237584695195e-22,-2.1975804692716746e-24)
    sum e = 2.398512065971684e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.2530954573710973 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0073e+04 | 1536 |      1 | 5.108e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47384.02783902806 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 174                                                     [SPH][rank=0]
Info: time since start : 98.58939809600001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000909527 s
sph::RenderFieldGetter compute custom field took :  0.00086801 s
rho_t_ampl=0.000626471, rho_t_phi=3.14159 rad
eps_t_ampl=-1.68986e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.78962e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 215.11s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 203.1556575279349, dt = 1.2530954573710973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.03 us    (2.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 341.45 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0987353452539251e-21,1.2627588474121652e-21,-3.282937788300367e-22)
    sum a = (1.969396341827685e-23,-6.599495628002096e-23,-1.5936609108940552e-23)
    sum e = 2.3985970359879666e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2530929920740903 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3427e+04 | 1536 |      1 | 6.557e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68803.78007211232 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 204.408752985306, dt = 1.2530929920740903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 310.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1918485101059527e-21,1.0621249418007417e-21,-3.5687198921030545e-22)
    sum a = (3.974503698584415e-23,8.762650994873104e-24,5.370266606163114e-24)
    sum e = 2.398585361779729e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.2530910953763903 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3847e+04 | 1536 |      1 | 6.441e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70038.17084994276 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 205.6618459773801, dt = 1.2530910953763903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.6%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 300.94 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (61.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2223219095120709e-21,1.1199156143398507e-21,-3.3679280762566186e-22)
    sum a = (3.3462543618697404e-23,4.041316381630758e-23,4.405180382583786e-23)
    sum e = 2.398575503968984e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.2530896341207738 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9916e+04 | 1536 |      1 | 5.134e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87861.09854917423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 206.9149370727565, dt = 1.2530896341207738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.4%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 320.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2527953089181889e-21,1.190403536631509e-21,-2.5735620396445163e-22)
    sum a = (1.95193762341793e-22,6.068072927663478e-24,5.338406656522938e-23)
    sum e = 2.3985659421550397e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.2530886091109161 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9684e+04 | 1536 |      1 | 5.174e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87180.920572143 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 208.16802670687727, dt = 1.2530886091109161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 280.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5913886356528346e-21,1.176496906905784e-21,-1.8461415739266802e-22)
    sum a = (-1.1018832050884114e-22,4.5694328294207416e-23,5.809510409008046e-23)
    sum e = 2.3985566934492136e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.253088020448714 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9650e+04 | 1536 |      1 | 5.180e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87081.01748945114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 209.42111531598817, dt = 1.253088020448714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.5%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 289.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3238999075324645e-21,1.2585785093914203e-21,-1.0886420468095062e-22)
    sum a = (5.793120199600578e-24,-1.2045580723313684e-22,-3.809786649983537e-24)
    sum e = 2.3985477677492276e-13
    sum de = -7.32062920045099e-28
Info: cfl dt = 1.2530878681278215 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0244e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88824.464242776 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 210.67420333643688, dt = 1.2530878681278215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 286.69 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3746889065426613e-21,1.0035324247134572e-21,-1.524243406089631e-22)
    sum a = (-7.680513470109716e-23,6.147513080095561e-24,-4.7449404147085725e-23)
    sum e = 2.398539174692132e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2530881520247645 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9456e+04 | 1536 |      1 | 5.215e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86510.12678882128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 211.9272912045647, dt = 1.2530881520247645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 301.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2426375091161497e-21,1.0905929031925573e-21,-2.3922476439397103e-22)
    sum a = (1.8045966210810568e-22,2.612608497571117e-23,-3.476947063289617e-23)
    sum e = 2.3985309235450077e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2530888718991386 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0195e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88681.70452396545 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 213.18037935658947, dt = 1.2530888718991386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.6%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 280.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.601546435454874e-21,1.1358417350255676e-21,-2.748494638983388e-22)
    sum a = (-3.251024988725621e-23,-3.691484734691369e-24,-1.9037295639890682e-23)
    sum e = 2.398523023196587e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2530900273937946 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9767e+04 | 1536 |      1 | 5.160e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87424.63389435806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 214.4334682284886, dt = 0.6725220952071709 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.5%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 281.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.439021638622244e-21,1.1146664258028267e-21,-2.77795559141904e-22)
    sum a = (-9.181698727312149e-23,-8.414474734562347e-23,3.631582938505019e-23)
    sum e = 2.3984769062069437e-13
    sum de = -6.815758221109542e-28
Info: cfl dt = 1.2530909658234883 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9825e+04 | 1536 |      1 | 5.150e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47011.167450409215 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 184                                                     [SPH][rank=0]
Info: time since start : 99.446766584 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001057212 s
sph::RenderFieldGetter compute custom field took :  0.0009323290000000001 s
rho_t_ampl=0.000426401, rho_t_phi=3.14159 rad
eps_t_ampl=-1.73977e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.968e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 227.06s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 215.10599032369578, dt = 1.2530909658234883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.01 us    (2.3%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 368.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3306717740671574e-21,9.821893067863044e-22,-2.136754216140994e-22)
    sum a = (-2.68758453095625e-23,4.3986770266155694e-23,-2.3338880823108312e-23)
    sum e = 2.398513667594937e-13
    sum de = 7.32062920045099e-28
Info: cfl dt = 1.2530926498414026 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7103e+04 | 1536 |      1 | 5.667e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79601.08537741075 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 216.35908128951925, dt = 1.2530926498414026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 286.16 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3069702411957322e-21,1.1176067980274243e-21,-2.8029759084437935e-22)
    sum a = (-3.8567896123368235e-23,-2.816374191897841e-23,8.625833256298399e-23)
    sum e = 2.398505637703213e-13
    sum de = 0
Info: cfl dt = 1.253094908384541 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6357e+04 | 1536 |      1 | 5.828e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77408.94515869941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 217.61217393936064, dt = 1.253094908384541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 327.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2494093756508425e-21,1.0370759794308364e-21,-1.035399822353929e-22)
    sum a = (5.830815159803458e-23,-2.8204768157081276e-23,-1.64213318606968e-23)
    sum e = 2.3984990465855744e-13
    sum de = 7.573064690121713e-28
Info: cfl dt = 1.253097599951286 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3968e+04 | 1536 |      1 | 6.408e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70393.3130572475 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 218.8652688477452, dt = 1.253097599951286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 303.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4187060390181653e-21,1.0016997552667514e-21,-1.8845119611997605e-22)
    sum a = (1.2808350687884018e-22,-4.4104053997086926e-23,-3.4020862152391134e-23)
    sum e = 2.398492838442054e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2531007240675347 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4092e+04 | 1536 |      1 | 6.375e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70757.81095986548 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 220.11836644769647, dt = 1.2531007240675347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 300.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5846167691181417e-21,9.36502353705322e-22,-2.4210972770094417e-22)
    sum a = (-9.487887614574144e-23,1.6701349400368782e-22,2.7508501843356404e-23)
    sum e = 2.398487023109047e-13
    sum de = -4.291403324402304e-28
Info: cfl dt = 1.2531042797250214 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3993e+04 | 1536 |      1 | 6.402e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70467.5503651141 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 221.371467171764, dt = 1.2531042797250214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 300.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3238999075324645e-21,1.2780666384875367e-21,-1.69087461025001e-22)
    sum a = (-9.231958674249324e-24,2.400277392381664e-23,2.3929876617253034e-24)
    sum e = 2.398481606720277e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2531082658099346 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3968e+04 | 1536 |      1 | 6.408e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70393.80654415172 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 222.62457145148903, dt = 1.2531082658099346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 298.08 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3916185728793936e-21,1.218544973697006e-21,-1.818249675603377e-22)
    sum a = (-6.582069103495954e-23,-1.0508160109526124e-22,1.658803011702484e-23)
    sum e = 2.398476595033872e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.253112681093981 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4109e+04 | 1536 |      1 | 6.371e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70808.74193785132 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 223.87767971729897, dt = 1.253112681093981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 336.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2798827750569606e-21,1.0060057431548392e-21,-1.521443341491925e-22)
    sum a = (-7.00597207700554e-23,3.4251346729739405e-23,-2.1604870852350647e-24)
    sum e = 2.3984719933608485e-13
    sum de = 0
Info: cfl dt = 1.2531175242348236 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3870e+04 | 1536 |      1 | 6.435e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70105.0371729867 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 225.13079239839294, dt = 1.2531175242348236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 294.31 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1613751106998346e-21,1.1362203379153248e-21,-1.6659868070551674e-22)
    sum a = (1.2785865974780545e-22,-1.246901684283923e-22,6.002163976900879e-23)
    sum e = 2.398467806561126e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.253122793776527 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3688e+04 | 1536 |      1 | 6.484e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69571.2829998148 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 226.38390992262777, dt = 0.6724131968288702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 339.79 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3950045061467401e-21,9.527640917998628e-22,-8.72785816018885e-23)
    sum a = (2.367177369231766e-23,3.613461645302453e-23,-1.1193541053166007e-23)
    sum e = 2.3984555324849794e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.2531259400766386 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7524e+04 | 1536 |      1 | 5.581e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43376.78731194259 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 194                                                     [SPH][rank=0]
Info: time since start : 100.384401689 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000929544 s
sph::RenderFieldGetter compute custom field took :  0.000736133 s
rho_t_ampl=0.000216524, rho_t_phi=3.14159 rad
eps_t_ampl=-1.76851e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-3.07187e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 239.01s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 227.05632311945664, dt = 1.2531259400766386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.49 us    (2.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 341.95 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3611451734732756e-21,1.0521175911819681e-21,-1.252485119566479e-22)
    sum a = (2.6085573775484569e-23,1.0838410529026011e-22,-6.04604907062486e-23)
    sum e = 2.398463181462384e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2531317176130632 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2953e+04 | 1536 |      1 | 6.692e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67413.2472557789 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 228.30944905953328, dt = 1.2531317176130632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.4%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 306.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4254779055528583e-21,1.2331856631740501e-21,-2.318823168224617e-22)
    sum a = (-7.501297080373214e-23,1.1329328790019236e-22,1.513522174891394e-23)
    sum e = 2.3984595636278936e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531380616930394 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3834e+04 | 1536 |      1 | 6.444e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70002.3125801535 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 229.56258077714634, dt = 1.2531380616930394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 301.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.259567175452882e-21,1.3782517415969249e-21,-1.6555010188016273e-22)
    sum a = (-1.8986356270608746e-23,-8.164891819706338e-23,3.46252207099681e-23)
    sum e = 2.398456877039155e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.253144825894786 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4550e+04 | 1536 |      1 | 6.257e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72104.97982599921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 230.8157188388394, dt = 1.253144825894786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 319.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3238999075324645e-21,1.1537856933835486e-21,-1.099478559418113e-22)
    sum a = (5.723020799925046e-23,9.55482506110603e-23,1.1000159180710617e-22)
    sum e = 2.3984546207643237e-13
    sum de = -6.310887241768094e-28
Info: cfl dt = 1.253152008489011 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0095e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88390.1001523338 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 232.06886366473418, dt = 1.253152008489011 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 289.34 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3848467063447007e-21,1.3845226619499743e-21,7.512961448586222e-23)
    sum a = (7.594873165789138e-23,-1.0139652789595037e-23,-3.00756863251203e-23)
    sum e = 2.3984527979142985e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2531596073908218 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0296e+04 | 1536 |      1 | 5.070e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88981.94307681636 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 233.3220156732232, dt = 1.2531596073908218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 286.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4694950380283621e-21,1.305546760461755e-21,-5.032908199886493e-23)
    sum a = (-1.8437464744847503e-23,-1.776854759764291e-23,-1.6022590538513938e-23)
    sum e = 2.3984514102671145e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2531676204148081 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0355e+04 | 1536 |      1 | 5.060e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89155.632406434 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 234.57517528061402, dt = 1.2531676204148081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 282.93 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.445793505156937e-21,1.278481613707314e-21,-6.16026876576311e-23)
    sum a = (6.861309400788345e-23,-1.4709312219535947e-23,1.932251800422563e-23)
    sum e = 2.398450459148484e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.2531760452662204 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0164e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88594.86660150082 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 235.82834290102883, dt = 1.2531760452662204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 324.66 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5846167691181417e-21,1.2619784956044565e-21,-1.5241498177575185e-23)
    sum a = (7.920441685140085e-23,1.4982779571905545e-23,4.256464100951191e-23)
    sum e = 2.3984499454045723e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531848795416771 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4511e+04 | 1536 |      1 | 6.266e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71993.01227396181 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 237.08151894629506, dt = 1.2531848795416771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 327.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6591073009997638e-21,1.2993675975776206e-21,5.266310223427435e-23)
    sum a = (-1.8828549956952386e-22,5.607432173276853e-23,2.2920314176962864e-23)
    sum e = 2.3984498694015293e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2531941207298587 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4178e+04 | 1536 |      1 | 6.353e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71015.37119253667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 238.33470382583673, dt = 0.6719520893807953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.3%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 337.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3509873736712362e-21,1.3627827549680542e-21,5.575546855710257e-23)
    sum a = (-2.5496176700382512e-23,-1.732363011005846e-22,2.876752412922297e-23)
    sum e = 2.3984500469078134e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.253195186091315 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9501e+04 | 1536 |      1 | 5.207e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46461.27957884363 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 204                                                     [SPH][rank=0]
Info: time since start : 101.28264962200001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001108237 s
sph::RenderFieldGetter compute custom field took :  0.0010001460000000002 s
rho_t_ampl=2.10325e-06, rho_t_phi=3.14159 rad
eps_t_ampl=-1.77541e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-3.09878e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 250.96s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 239.00665591521752, dt = 1.253195186091315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.92 us    (2.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 357.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3916185728793936e-21,1.0686124428461847e-21,9.377131378388443e-23)
    sum a = (-6.09583718263336e-23,-4.089206185613838e-23,1.1622413417277374e-23)
    sum e = 2.3984504136350426e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.253186783061445 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2749e+04 | 1536 |      1 | 6.752e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66817.09778435783 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 240.25985110130884, dt = 1.253186783061445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 307.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.246023442383496e-21,1.1002638097586428e-21,9.759328356113669e-23)
    sum a = (1.6431365415453855e-22,4.8375821331736213e-23,8.315121423949903e-23)
    sum e = 2.3984515374992467e-13
    sum de = 6.815758221109542e-28
Info: cfl dt = 1.2531789185704927 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3101e+04 | 1536 |      1 | 6.649e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67851.89278341568 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 241.51303788437028, dt = 1.2531789185704927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 314.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6218620350589528e-21,1.2168759797353916e-21,2.466161061988556e-22)
    sum a = (-5.591749754306243e-23,2.1744112855486394e-23,6.854796417564808e-24)
    sum e = 2.3984530050135707e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2531714752176175 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3292e+04 | 1536 |      1 | 6.594e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68412.24052543213 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 242.76621680294076, dt = 1.2531714752176175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 302.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.445793505156937e-21,1.2274644609906261e-21,2.0739981034933023e-22)
    sum a = (-6.715654751934232e-23,-5.574974696204718e-23,9.672931533718208e-23)
    sum e = 2.39845490586004e-13
    sum de = 5.806016262426647e-28
Info: cfl dt = 1.2531644550425618 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3719e+04 | 1536 |      1 | 6.476e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69664.53046656345 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 244.01938827815837, dt = 1.2531644550425618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 332.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3374436406018504e-21,1.1090518606778714e-21,3.849316418200089e-22)
    sum a = (2.9111090318084185e-23,1.774532810793289e-23,-2.8142526429596587e-23)
    sum e = 2.3984572375739063e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2531578598902708 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4426e+04 | 1536 |      1 | 6.288e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71742.58583344652 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 245.27255273320094, dt = 1.2531578598902708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 308.14 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4525653716916298e-21,1.1773648829630872e-21,2.7142213685873056e-22)
    sum a = (4.2039800352580906e-23,-7.560861291490126e-23,8.101666094662936e-23)
    sum e = 2.3984599973630866e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253151691496562 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3959e+04 | 1536 |      1 | 6.411e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70370.63368558271 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 246.52571059309122, dt = 1.253151691496562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 319.36 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4694950380283621e-21,1.0240728714485708e-21,4.413451493832436e-22)
    sum a = (8.051511236317013e-23,9.872252631843996e-23,5.092483127841181e-23)
    sum e = 2.39846318195337e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.253145951477638 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3947e+04 | 1536 |      1 | 6.414e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70334.9819453245 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 247.77886228458777, dt = 1.253145951477638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 319.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5880027023854882e-21,1.2570244189269156e-21,4.863065819049982e-22)
    sum a = (6.636958256072078e-23,1.4872090021056231e-23,4.137822853223292e-23)
    sum e = 2.398466787605899e-13
    sum de = -5.553580772755923e-28
Info: cfl dt = 1.2531406413296582 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1092e+04 | 1536 |      1 | 7.282e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61947.856949901194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 249.03200823606542, dt = 1.2531406413296582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 300.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (60.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7031244334752678e-21,1.2231427668691204e-21,5.321776784541857e-22)
    sum a = (9.486564984391586e-23,-7.247890695464932e-25,6.482323764506291e-23)
    sum e = 2.398470810122043e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.253135762428323 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3724e+04 | 1536 |      1 | 6.474e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69678.87846194897 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 250.28514887739507, dt = 0.6718398335833058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 327.80 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7979305649609684e-21,1.2128642770629228e-21,5.904184585236393e-22)
    sum a = (-2.018333658582302e-23,-9.410424787806828e-23,7.939681741979928e-23)
    sum e = 2.3984609225557963e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2531334697290508 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3769e+04 | 1536 |      1 | 6.462e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37428.00101930042 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 214                                                     [SPH][rank=0]
Info: time since start : 102.262072939 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009527870000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008000430000000001 s
rho_t_ampl=-0.000211495, rho_t_phi=3.14159 rad
eps_t_ampl=-1.76034e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-3.04822e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 262.91s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 250.95698871097838, dt = 1.2531334697290508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.80 us    (2.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 341.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7302118996140393e-21,1.063617033975439e-21,6.948088235277814e-22)
    sum a = (-8.92114058134838e-24,-4.1219860053568075e-23,5.95402812377737e-24)
    sum e = 2.3984764460554884e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.2531291113455352 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5722e+04 | 1536 |      1 | 5.971e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75547.20871968208 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 252.21012218070743, dt = 1.2531291113455352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 312.00 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7098963000099605e-21,1.0450911183371329e-21,6.562531808109681e-22)
    sum a = (1.239039955019594e-22,1.3215330550084388e-22,-7.039038081114809e-24)
    sum e = 2.3984821685748973e-13
    sum de = 0
Info: cfl dt = 1.2531253313593087 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3879e+04 | 1536 |      1 | 6.432e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70133.29831554597 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 253.46325129205297, dt = 1.2531253313593087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 309.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9536834952589054e-21,1.3193227804569525e-21,6.392913891294936e-22)
    sum a = (2.0963688393531772e-24,2.237666170901766e-23,1.0989764897960881e-23)
    sum e = 2.3984876253367654e-13
    sum de = -5.301145283085199e-28
Info: cfl dt = 1.2531219866470515 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3865e+04 | 1536 |      1 | 6.436e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70091.73291116633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 254.7163766234123, dt = 1.2531219866470515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 302.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8791929633772836e-21,1.2785741978200932e-21,6.64359080004709e-22)
    sum a = (5.369217226090992e-23,1.1268263441274018e-23,-1.4301075674315337e-23)
    sum e = 2.398493473820842e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2531190779095749 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3947e+04 | 1536 |      1 | 6.414e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70332.13814422558 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 255.96949861005933, dt = 1.2531190779095749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.5%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 323.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0146302940711418e-21,1.2857197073813584e-21,6.305918750518497e-22)
    sum a = (-1.3444535805694036e-23,-8.359138193285555e-23,4.069815655227755e-23)
    sum e = 2.3984997077923673e-13
    sum de = 0
Info: cfl dt = 1.2531166058402103 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4000e+04 | 1536 |      1 | 6.400e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70486.81593793258 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 257.2226176879689, dt = 1.2531166058402103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 299.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.936753828922173e-21,1.1215895681646496e-21,7.160517044410678e-22)
    sum a = (6.576117267674446e-23,-7.415672275625087e-23,7.960894455453081e-23)
    sum e = 2.398506320238127e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.2531145710197122 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4016e+04 | 1536 |      1 | 6.396e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70534.64077367425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 258.4757342938091, dt = 1.2531145710197122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 299.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.068805226348685e-21,1.0344770111221114e-21,8.401907101421192e-22)
    sum a = (3.93879268365537e-23,9.10006054176174e-24,-8.261323900746926e-23)
    sum e = 2.3985133036813443e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.2531129739064342 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4647e+04 | 1536 |      1 | 6.232e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72388.00298400657 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 259.7288488648288, dt = 1.2531129739064342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 301.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0891208259527636e-21,1.0981070959172104e-21,6.350254975430269e-22)
    sum a = (-1.7643886635313177e-23,-8.807489966345245e-24,4.282135436185535e-23)
    sum e = 2.3985206502415246e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2531118148362117 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9566e+04 | 1536 |      1 | 5.195e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86833.94918379757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 260.98196183873523, dt = 1.2531118148362117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 322.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0281740271405275e-21,1.0758290437797625e-21,7.672773007851261e-22)
    sum a = (5.0524472973685405e-23,5.49832252936741e-23,4.3695103139824915e-23)
    sum e = 2.398528351643346e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2531110940222867 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0918e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90806.59860799316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 262.2350736535714, dt = 0.6722478531678462 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 316.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1094364255568424e-21,1.1528086003361844e-21,7.971986925234439e-22)
    sum a = (-3.8210785974077785e-23,6.406522560445184e-23,3.8414968522066465e-23)
    sum e = 2.398487037572396e-13
    sum de = -5.553580772755923e-28
Info: cfl dt = 1.2531110267657988 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0391e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47882.695497576744 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 224                                                     [SPH][rank=0]
Info: time since start : 103.17611215100001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001037105 s
sph::RenderFieldGetter compute custom field took :  0.0010242110000000001 s
rho_t_ampl=-0.000418936, rho_t_phi=3.14159 rad
eps_t_ampl=-1.72372e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.92161e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 274.86s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 262.90732150673927, dt = 1.2531110267657988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.09 us    (2.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 349.42 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0214021606058345e-21,1.2361243821109195e-21,8.435621335905369e-22)
    sum a = (-9.919726369179073e-24,3.1134917929285147e-23,6.867920712979257e-23)
    sum e = 2.398538503055128e-13
    sum de = 0
Info: cfl dt = 1.2531108418236558 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3433e+04 | 1536 |      1 | 6.555e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68820.78068504928 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 264.16043253350506, dt = 1.2531108418236558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.75 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0349458936752206e-21,1.2545279544573389e-21,9.485870182106675e-22)
    sum a = (-3.9586321363937284e-23,6.668739483569061e-24,-2.96115840013334e-23)
    sum e = 2.3985482249624025e-13
    sum de = 0
Info: cfl dt = 1.2531112324409328 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2848e+04 | 1536 |      1 | 6.723e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67103.00033960801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 265.41354337532874, dt = 1.2531112324409328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 332.50 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9469116287242127e-21,1.2475386805863881e-21,8.498957816794158e-22)
    sum a = (6.434595838140824e-23,-6.156071427351053e-23,9.444784395932291e-26)
    sum e = 2.398557111817373e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2531120614057063 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8650e+04 | 1536 |      1 | 5.361e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84144.39291300593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 266.66665460776966, dt = 1.2531120614057063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 318.00 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1331379584282677e-21,1.1276670538535001e-21,8.686266165001943e-22)
    sum a = (-1.4648129271821097e-22,9.021914603629385e-23,4.051078512170447e-23)
    sum e = 2.3985663088059093e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531133280635744 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0578e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89806.80981757265 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 267.9197666691754, dt = 1.2531133280635744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 296.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.794544631693622e-21,1.335816805477305e-21,9.447143211267336e-22)
    sum a = (5.942577410229543e-23,-2.925042824534865e-23,1.639746355477802e-23)
    sum e = 2.3985758080358487e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2531150319402724 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0213e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88735.74178221912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 269.17287999723897, dt = 1.2531150319402724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 306.63 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9892357945660434e-21,1.2242670025242941e-21,9.50153866873308e-22)
    sum a = (-7.183204521468205e-23,-3.28273194743794e-23,9.133721341482389e-24)
    sum e = 2.3985855989794104e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.2531171724484471 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0909e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90780.15825836621 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 270.42599502917926, dt = 1.2531171724484471 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 309.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8622632970405513e-21,1.1809029187014277e-21,9.570483376567171e-22)
    sum a = (-9.624779838468815e-23,-4.1305950491305275e-23,4.245853456062487e-23)
    sum e = 2.398595670711477e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2531197488787804 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0670e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90076.17283732141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 271.67911220162773, dt = 1.2531197488787804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.8%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 277.85 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6811158672375157e-21,1.1238429993381815e-21,1.031133913680028e-21)
    sum a = (-1.2472402621514487e-23,-1.524067695793175e-22,-3.2566058739059555e-23)
    sum e = 2.3986060120030323e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531227604002042 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0890e+04 | 1536 |      1 | 4.973e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90722.48149542426 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 272.9322319505065, dt = 1.2531227604002042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 271.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.740369699416079e-21,8.632253350161962e-22,9.433172444997625e-22)
    sum a = (-3.0737925442629555e-23,-1.0781967584675059e-23,-1.5448431607272985e-23)
    sum e = 2.3986166113342427e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.253126206060164 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0545e+04 | 1536 |      1 | 5.029e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89711.40423432887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 274.1853547109067, dt = 0.6722995915934575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.9%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 269.09 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7082033333762874e-21,9.447324200162842e-22,9.436565143209582e-22)
    sum a = (5.496851038707763e-23,-3.598838946530316e-23,1.9577442831409536e-24)
    sum e = 2.3985257349427426e-13
    sum de = 1.0097419586828951e-27
Info: cfl dt = 1.25312836231346 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0764e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48474.17803787306 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 234                                                     [SPH][rank=0]
Info: time since start : 104.036020072 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001064206 s
sph::RenderFieldGetter compute custom field took :  0.0008965930000000001 s
rho_t_ampl=-0.00061505, rho_t_phi=3.14159 rad
eps_t_ampl=-1.66651e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.72225e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 286.81s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 274.8576543025002, dt = 1.25312836231346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 572.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 344.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7860797985252557e-21,8.911675509104453e-22,9.519609016794694e-22)
    sum a = (-7.265207592786753e-23,-2.6525451641667853e-23,9.062094506649825e-24)
    sum e = 2.398630253176778e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2531323454165213 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0265e+04 | 1536 |      1 | 5.075e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88888.67989573212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 276.11078266481366, dt = 1.2531323454165213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.5%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 283.29 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6150901685242599e-21,8.638502777774544e-22,9.677682368033035e-22)
    sum a = (1.9455889985416554e-23,4.745814734845113e-23,4.418179902319919e-23)
    sum e = 2.398642983465039e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.253136886683528 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1027e+04 | 1536 |      1 | 4.950e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91128.35203412797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 277.3639150102302, dt = 1.253136886683528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 278.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6963525669405747e-21,9.696821851224978e-22,1.0451388977249865e-21)
    sum a = (-1.1374619569992004e-24,-5.02634504863636e-23,-1.8198240755481602e-23)
    sum e = 2.398654404759137e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2531418582495315 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0827e+04 | 1536 |      1 | 4.983e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90540.99282082617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 278.6170518969137, dt = 1.2531418582495315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 308.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6895807004058819e-21,8.455087037208423e-22,9.83248556068012e-22)
    sum a = (-7.85906854475494e-23,-1.3810658956365228e-22,3.1884775338558096e-23)
    sum e = 2.3986660228225404e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2531472581244716 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0891e+04 | 1536 |      1 | 4.972e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90727.29885097421 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 279.87019375516326, dt = 1.2531472581244716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 315.06 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5338277701079449e-21,6.173525172981314e-22,1.0545854367869506e-21)
    sum a = (-1.6003825208942237e-23,-7.310179925163532e-23,-9.79809417955293e-23)
    sum e = 2.3986778303648667e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531530846813417 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0698e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90161.51859115173 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 281.12334101328776, dt = 1.2531530846813417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 283.70 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5812308358507953e-21,5.664792006137965e-22,8.504298836603064e-22)
    sum a = (8.898655868244907e-23,5.1041335278790436e-23,-1.04679342466189e-22)
    sum e = 2.3986898143942773e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531593361825795 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1000e+04 | 1536 |      1 | 4.955e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91048.4723403277 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 282.3764940979691, dt = 1.2531593361825795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.8%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 268.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7369837661487323e-21,7.082180374836758e-22,7.150529276120027e-22)
    sum a = (-5.912156916030728e-23,1.3930792913361864e-22,1.0035638251498652e-23)
    sum e = 2.398701961625434e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.2531660107723317 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0635e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89978.51425319912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 283.6296534341517, dt = 1.2531660107723317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.8%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 275.45 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5592222696130433e-21,9.381225756789545e-22,7.995073229082864e-22)
    sum a = (1.73000027878483e-23,1.7689736308072283e-23,4.1001483811115485e-23)
    sum e = 2.398714258598556e-13
    sum de = 5.048709793414476e-28
Info: cfl dt = 1.2531731064769922 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0583e+04 | 1536 |      1 | 5.022e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89825.94037250831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 284.882819444924, dt = 1.2531731064769922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 286.32 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6303268682273189e-21,8.840939593653566e-22,8.702919523212436e-22)
    sum a = (-3.0526304613420397e-23,-4.302329343173662e-24,-2.3679386617058987e-23)
    sum e = 2.3987266916948684e-13
    sum de = 5.806016262426647e-28
Info: cfl dt = 1.253180621205823 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0739e+04 | 1536 |      1 | 4.997e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90283.82932183676 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 286.135992551401, dt = 0.6719945468600486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 281.62 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (86.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.594774568920181e-21,8.674188993387667e-22,8.138513699795784e-22)
    sum a = (-5.451881612500819e-23,-2.529517307830287e-24,-6.923440004622334e-23)
    sum e = 2.3985730716897525e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2531849388533474 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1040e+04 | 1536 |      1 | 4.948e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48887.773291300146 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 244                                                     [SPH][rank=0]
Info: time since start : 104.853323814 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00103953 s
sph::RenderFieldGetter compute custom field took :  0.000996399 s
rho_t_ampl=-0.000794958, rho_t_phi=3.14159 rad
eps_t_ampl=-1.59017e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.45527e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 298.76s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 286.80798709826104, dt = 1.2531849388533474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.3%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 360.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5152051371375393e-21,8.64830677400275e-22,7.11781502287989e-22)
    sum a = (6.785092836518485e-23,-4.512590730715685e-24,1.419743329356353e-23)
    sum e = 2.3987424547007775e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.2531929788222336 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9922e+04 | 1536 |      1 | 5.133e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87886.23003477274 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 288.0611720371144, dt = 1.2531929788222336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 282.88 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.645563567930378e-21,8.579116682577726e-22,7.818513844899326e-22)
    sum a = (-1.0051989387434794e-23,-8.636160275724656e-23,1.8210469879266755e-23)
    sum e = 2.3987569095406594e-13
    sum de = 0
Info: cfl dt = 1.2532015454746521 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0690e+04 | 1536 |      1 | 5.005e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90141.88534686125 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 289.31436501593663, dt = 1.2532015454746521 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 310.65 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6100112686232401e-21,6.9844710701003435e-22,8.071873281228984e-22)
    sum a = (-3.375352225885999e-23,-1.7574760479624517e-22,2.1075333055482158e-23)
    sum e = 2.3987697227329115e-13
    sum de = -4.291403324402304e-28
Info: cfl dt = 1.253210523492193 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0310e+04 | 1536 |      1 | 5.068e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89025.1657258497 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 290.5675665614113, dt = 1.253210523492193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 270.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5456785365436575e-21,4.2221248680750473e-22,8.353942827740236e-22)
    sum a = (-8.078625155059436e-23,-1.4532361673547248e-22,5.011777216997927e-23)
    sum e = 2.3987825988376014e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.2532199096042844 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0326e+04 | 1536 |      1 | 5.065e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89073.68435565726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 291.8207770849035, dt = 1.2532199096042844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.9%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 283.42 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4424075718895906e-21,2.591470648877546e-22,9.164010178454939e-22)
    sum a = (9.364221692505045e-24,6.416886284983557e-23,-4.592525393230255e-23)
    sum e = 2.3987955333587297e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2532297010769335 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0437e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89399.55403925141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 293.0739969945078, dt = 1.2532297010769335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.8%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 271.89 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4847317377314213e-21,4.708083996462489e-22,7.986646093430943e-22)
    sum a = (6.380368000655979e-23,8.611262795842847e-23,-4.977816372935572e-23)
    sum e = 2.398808512125273e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2532398950710442 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0510e+04 | 1536 |      1 | 5.034e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89615.03888291337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 294.3272266955847, dt = 1.2532398950710442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 310.24 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6133972018905866e-21,5.925151757574352e-22,7.338663381574197e-22)
    sum a = (8.663227695749723e-23,-4.391775115438928e-23,3.3920169183240414e-23)
    sum e = 2.398821520808904e-13
    sum de = 5.048709793414476e-28
Info: cfl dt = 1.2532504886360998 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0275e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88925.06381826174 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 295.58046659065576, dt = 1.2532504886360998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 283.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.742062666049752e-21,4.560003147867248e-22,8.288238517393784e-22)
    sum a = (-2.1558871975682518e-23,-6.962119265830645e-23,1.6996869848487164e-23)
    sum e = 2.398834545052765e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2532614787110063 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0247e+04 | 1536 |      1 | 5.078e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88843.56935403853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 296.8337170792919, dt = 1.2532614787110063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 267.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6354057681283385e-21,3.526115533820239e-22,8.3952080739902105e-22)
    sum a = (7.131621944348474e-23,-9.561598414630955e-23,-5.211955628962646e-23)
    sum e = 2.398847570487976e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2532728621250253 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0487e+04 | 1536 |      1 | 5.038e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89549.29082620156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 298.0869785580029, dt = 0.6713413360189975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.6%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 269.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.735290799515059e-21,2.721270268418254e-22,7.612203176342297e-22)
    sum a = (3.3330280600441683e-23,-4.822199211149867e-23,-1.985993083805172e-23)
    sum e = 2.3986242325383827e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.253279220911067 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0624e+04 | 1536 |      1 | 5.016e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48185.88255541696 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 254                                                     [SPH][rank=0]
Info: time since start : 105.878135235 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001144917 s
sph::RenderFieldGetter compute custom field took :  0.00094324 s
rho_t_ampl=-0.000954198, rho_t_phi=3.14159 rad
eps_t_ampl=-1.49666e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.12748e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 310.71s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 298.7583198940219, dt = 1.253279220911067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 30.97 us   (8.2%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 331.84 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.752220465851791e-21,2.27618041267183e-22,7.47158889011333e-22)
    sum a = (1.2165552419161215e-22,-4.7630205518976954e-23,9.463088221006977e-24)
    sum e = 2.398863879871114e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2532911039914687 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2512e+04 | 1536 |      1 | 6.823e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66124.68748661039 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 300.01159911493295, dt = 1.2532911039914687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.3%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 330.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.972306128229311e-21,1.682935310382396e-22,7.77393858535463e-22)
    sum a = (-2.272278653633286e-23,7.962227240839214e-24,-6.094881224896228e-23)
    sum e = 2.398878609868159e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.2533034690352016 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2409e+04 | 1536 |      1 | 6.854e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65825.48492920242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 301.2648902189244, dt = 1.2533034690352016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 327.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8436406640701456e-21,2.1308853538986e-22,6.568831964730326e-22)
    sum a = (5.316973333879983e-24,9.432548328581397e-23,2.5246470588073656e-23)
    sum e = 2.398891539075817e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2533162161544162 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2722e+04 | 1536 |      1 | 6.760e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66744.12772335659 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 302.5181936879596, dt = 1.2533162161544162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 345.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8808859300109567e-21,3.85423941601608e-22,7.425394309588259e-22)
    sum a = (9.34305960958413e-23,-8.248355806455411e-25,6.801839280595837e-23)
    sum e = 2.398904390098728e-13
    sum de = 0
Info: cfl dt = 1.2533293408874895 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3775e+04 | 1536 |      1 | 6.460e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69839.24831999485 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 303.771509904114, dt = 1.2533293408874895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 332.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0434107268435867e-21,3.2475200187418445e-22,8.545922502383193e-22)
    sum a = (-1.0009665221592962e-22,2.7870046010020357e-23,-1.9470006322702615e-23)
    sum e = 2.3989171631487083e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2533428394688626 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3450e+04 | 1536 |      1 | 6.550e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68884.26083967925 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 305.0248392450015, dt = 1.2533428394688626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 338.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8131672646640276e-21,3.7766712890284203e-22,7.753637684219528e-22)
    sum a = (-3.769496020288047e-23,-4.460669746264089e-23,-1.643048783722474e-23)
    sum e = 2.3989298442743495e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2533567080361459 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3734e+04 | 1536 |      1 | 6.472e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69718.62401153169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 306.27818208447036, dt = 1.2533567080361459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 348.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.809781331396681e-21,2.763296842469009e-22,7.566752856394555e-22)
    sum a = (3.6187161794765253e-23,-2.6014760103845213e-23,9.870914886618984e-23)
    sum e = 2.398942419520435e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2533709426253377 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3842e+04 | 1536 |      1 | 6.442e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70036.62510244526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 307.5315387925065, dt = 1.2533709426253377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.3%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 366.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.904587462882382e-21,2.5536599585336914e-22,9.52549982611093e-22)
    sum a = (4.1345419506738374e-23,-7.414693219298545e-23,2.073586371330116e-23)
    sum e = 2.3989548750491036e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2533855391719553 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2701e+04 | 1536 |      1 | 6.766e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66686.67887028611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 308.78490973513186, dt = 1.2533855391719553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 342.59 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9502975619915592e-21,1.3227500459175038e-22,9.296752893758336e-22)
    sum a = (-1.2988228392711798e-23,1.4706694406330383e-22,-4.3762034103016715e-23)
    sum e = 2.398967197159697e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2534004935122505 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8408e+04 | 1536 |      1 | 5.407e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83451.88218266924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 310.03829527430383, dt = 0.670357415478918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 303.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.891043729812996e-21,3.6950650067646407e-22,8.5991871908355e-22)
    sum a = (-1.5342510117663632e-24,1.3463025503998047e-23,-6.817850175853447e-23)
    sum e = 2.398674034255988e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.253408719002747 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8680e+04 | 1536 |      1 | 5.356e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45061.36862182396 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 264                                                     [SPH][rank=0]
Info: time since start : 106.834785464 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001024331 s
sph::RenderFieldGetter compute custom field took :  0.000880593 s
rho_t_ampl=-0.00108883, rho_t_phi=3.14159 rad
eps_t_ampl=-1.38834e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.74717e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 322.66s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 310.70865268978275, dt = 1.253408719002747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 356.46 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.897815596347689e-21,3.416056169754197e-22,7.662793104544337e-22)
    sum a = (2.415122713349465e-23,1.241240635981548e-23,3.753708714789778e-23)
    sum e = 2.3989824314166936e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.253424134848827 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2070e+04 | 1536 |      1 | 6.960e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64834.58001271107 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 311.9620614087855, dt = 1.253424134848827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 320.71 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9519905286252323e-21,3.56507525913519e-22,8.795816218724004e-22)
    sum a = (1.2541179391007462e-22,-3.8859591618756716e-23,3.31472311267081e-23)
    sum e = 2.398995964745113e-13
    sum de = 3.155443620884047e-28
Info: cfl dt = 1.253439975894124 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2605e+04 | 1536 |      1 | 6.795e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66406.11540499347 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 313.2154855436343, dt = 1.253439975894124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.3%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 353.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1703832243690788e-21,2.7568035549165174e-22,9.18378510714039e-22)
    sum a = (2.7590065608143395e-23,5.2024850961489305e-23,2.262659188435504e-24)
    sum e = 2.3990077270234087e-13
    sum de = -3.660314600225495e-28
Info: cfl dt = 1.2534560740310332 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2581e+04 | 1536 |      1 | 6.802e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66336.54371583887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 314.46892551952845, dt = 1.2534560740310332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 312.77 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1399098249629608e-21,3.978202929876255e-22,9.018586760642457e-22)
    sum a = (3.0341136387862386e-23,-7.55030156194179e-23,-5.041643378420505e-23)
    sum e = 2.399019276648437e-13
    sum de = -2.9030081312133234e-28
Info: cfl dt = 1.2534721234283859 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2569e+04 | 1536 |      1 | 6.806e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66303.89020421742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 315.7223815935595, dt = 1.2534721234283859 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 380.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.178848057537445e-21,2.232785743025992e-22,8.056476172224785e-22)
    sum a = (8.287600723903475e-23,-8.347352867336366e-24,4.116542872544078e-24)
    sum e = 2.3990306197531896e-13
    sum de = -1.8932661725304283e-28
Info: cfl dt = 1.2534885060979606 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1946e+04 | 1536 |      1 | 6.999e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64473.06002214743 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 316.97585371698784, dt = 1.2534885060979606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 343.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.65 us   (94.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.314285388231303e-21,2.549001820359498e-22,8.449854394218435e-22)
    sum a = (-1.1956576850317174e-23,-2.0227788067983866e-23,-5.0516155574894126e-23)
    sum e = 2.399041744261599e-13
    sum de = -2.6505726415425997e-28
Info: cfl dt = 1.253505217394621 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2552e+04 | 1536 |      1 | 6.811e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66253.73746172797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 318.2293422230858, dt = 1.253505217394621 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 321.16 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.25503155605274e-21,2.220638211443068e-22,7.47422445065499e-22)
    sum a = (6.798319138344058e-24,1.2821739735220335e-22,6.064812577957745e-24)
    sum e = 2.3990526379517357e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2535222525838001 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2019e+04 | 1536 |      1 | 6.976e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64689.369788888915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 319.4828474404804, dt = 1.2535222525838001 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 327.84 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2618034225874332e-21,4.758100083459754e-22,7.904870919819738e-22)
    sum a = (3.8144654464949925e-23,3.0226362053856497e-24,9.751521403043154e-23)
    sum e = 2.3990632888798666e-13
    sum de = -1.8932661725304283e-28
Info: cfl dt = 1.2535396068427682 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2072e+04 | 1536 |      1 | 6.959e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64845.3862355585 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 320.7363696930642, dt = 1.2535396068427682 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 317.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.343065821003748e-21,4.0112728176595056e-22,9.700438316529217e-22)
    sum a = (4.4519731944875676e-23,4.8065472262355816e-23,3.169907232601694e-23)
    sum e = 2.3990736853636635e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.2535572752620403 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2253e+04 | 1536 |      1 | 6.903e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65377.87852392763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 321.98990929990697, dt = 0.6690761856366976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 346.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3650743872415e-21,4.615251890524255e-22,9.500013558551657e-22)
    sum a = (3.375352225885999e-23,1.957455858700097e-23,-1.432307462422231e-23)
    sum e = 2.3987174682433944e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253566893262869 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2524e+04 | 1536 |      1 | 6.819e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35321.344941438874 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 274                                                     [SPH][rank=0]
Info: time since start : 107.84484959500001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009391320000000001 s
sph::RenderFieldGetter compute custom field took :  0.000838865 s
rho_t_ampl=-0.00119554, rho_t_phi=3.14159 rad
eps_t_ampl=-1.26795e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.32397e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 334.61s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 322.65898548554367, dt = 1.253566893262869 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.27 us    (2.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 337.50 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4031661364991476e-21,4.76538694912178e-22,9.16650262428372e-22)
    sum a = (-4.245642886008643e-23,-4.980348452846721e-23,-9.625801177584431e-23)
    sum e = 2.3990863383368067e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2535849759705167 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1819e+04 | 1536 |      1 | 7.040e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64105.594285379564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 323.91255237880654, dt = 1.2535849759705167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.4%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 308.77 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3092064883302835e-21,3.7063982941414274e-22,7.446272027419716e-22)
    sum a = (-2.0553673036939037e-23,-2.9304718726938824e-24,-3.559963094890081e-23)
    sum e = 2.39909732518214e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.2536034168296355 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1868e+04 | 1536 |      1 | 7.024e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64250.42969874605 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 325.16613735477705, dt = 1.2536034168296355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 382.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2846584721420217e-21,3.963666397526087e-22,7.380196011823715e-22)
    sum a = (1.0133992458753341e-22,-3.755616153157423e-23,4.2942405510830523e-23)
    sum e = 2.3991067566805575e-13
    sum de = -1.3883951931889808e-28
Info: cfl dt = 1.2536221548480901 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2305e+04 | 1536 |      1 | 6.886e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65534.85549369211 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 326.4197407716067, dt = 1.2536221548480901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 343.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4996652346185216e-21,3.275671375533711e-22,8.410834347484275e-22)
    sum a = (1.7326455391499446e-23,1.737263120109556e-24,9.398574223305728e-23)
    sum e = 2.399115861103585e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2536411837228432 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2122e+04 | 1536 |      1 | 6.943e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64997.125957734206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 327.6733629264548, dt = 1.2536411837228432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 331.30 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4607270020440375e-21,3.5437891796346598e-22,9.909023607808198e-22)
    sum a = (-1.261789194159578e-23,-1.8916608194575454e-23,-4.8896024130542376e-23)
    sum e = 2.3991246518047473e-13
    sum de = 2.145701662201152e-28
Info: cfl dt = 1.253660498087864 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0981e+04 | 1536 |      1 | 7.321e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61645.48184701216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 328.9270041101776, dt = 1.253660498087864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 346.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.431100085954756e-21,3.177284222828736e-22,8.400421134563682e-22)
    sum a = (-2.2537618310774853e-23,6.438674808957735e-23,-4.1738465728080807e-23)
    sum e = 2.3991331192391235e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2536800925032552 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1912e+04 | 1536 |      1 | 7.010e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64383.54729949778 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 330.1806646082655, dt = 1.2536800925032552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 298.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.404859103132821e-21,4.506618487123782e-22,7.922020039976182e-22)
    sum a = (3.703364511160187e-23,-4.5705630065786886e-23,-5.841616652905917e-23)
    sum e = 2.399141254147586e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.253699961453838 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3036e+04 | 1536 |      1 | 6.668e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67686.08225030264 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 331.43434470076875, dt = 1.253699961453838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 300.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4827355682817893e-21,3.243324801131546e-22,7.085114075302778e-22)
    sum a = (1.462828981908274e-23,3.7836968577315294e-23,6.002148010703794e-23)
    sum e = 2.3991490476443334e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.253720099350694 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2492e+04 | 1536 |      1 | 6.829e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66088.64691765781 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 332.6880446622226, dt = 1.253720099350694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 295.07 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.487814468182809e-21,4.2415799314166e-22,8.580041800446037e-22)
    sum a = (3.600199356920725e-23,8.058888386988572e-23,-5.159152448082824e-24)
    sum e = 2.3991564912026496e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2537405005327953 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3176e+04 | 1536 |      1 | 6.628e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68099.62432829324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 333.94176476157327, dt = 0.667553519731257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 299.68 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.526752700757293e-21,5.047723027685219e-22,8.137010351074011e-22)
    sum a = (-7.827325420373566e-23,9.2534830596763e-23,-3.2620860215726704e-23)
    sum e = 2.3987502213357557e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2537515078256154 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3453e+04 | 1536 |      1 | 6.549e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36693.83158094547 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 284                                                     [SPH][rank=0]
Info: time since start : 108.853326089 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0011174450000000001 s
sph::RenderFieldGetter compute custom field took :  0.000978395 s
rho_t_ampl=-0.00127172, rho_t_phi=3.14159 rad
eps_t_ampl=-1.13853e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-8.68508e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 346.56s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 334.6093182813045, dt = 1.2537515078256154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.69 us    (2.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 333.66 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3853899868455788e-21,6.247546997791992e-22,7.636365025865134e-22)
    sum a = (5.319618594245098e-23,1.2011498293669242e-22,4.52587562404328e-24)
    sum e = 2.3991653238629e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.2537722651863992 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0014e+04 | 1536 |      1 | 5.118e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88194.26601320885 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 335.8630697891301, dt = 1.2537722651863992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 286.64 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5343710506088227e-21,7.92654335016196e-22,7.925973079545975e-22)
    sum a = (1.1443396339484977e-22,-1.1251173871014823e-22,-4.4241534968447935e-23)
    sum e = 2.3991726704633034e-13
    sum de = -3.155443620884047e-29
Info: cfl dt = 1.253793306249573 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0886e+04 | 1536 |      1 | 4.973e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90759.76355769215 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 337.1168420543165, dt = 1.253793306249573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 286.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.719750896996041e-21,5.057374094798566e-22,7.065559541299078e-22)
    sum a = (3.108180929009443e-23,-8.192387496147327e-23,2.838225980432892e-23)
    sum e = 2.3991788423525115e-13
    sum de = 1.199068575935938e-28
Info: cfl dt = 1.2538145911428416 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0315e+04 | 1536 |      1 | 5.067e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89081.96918879755 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 338.3706353605661, dt = 1.2538145911428416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 281.45 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.703667713976146e-21,4.2219843386181508e-22,7.876696594824819e-22)
    sum a = (2.486544743207554e-23,-6.019599306451379e-23,-8.102473658154609e-23)
    sum e = 2.3991846038930354e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.2538361128053856 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4644e+04 | 1536 |      1 | 6.233e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72418.82935861689 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 339.6244499517089, dt = 1.2538361128053856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 276.14 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7299086967980808e-21,3.603365402920221e-22,6.174898745049943e-22)
    sum a = (3.703364511160187e-23,4.634356663528396e-23,-2.3726976688444333e-23)
    sum e = 2.3991899755797303e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2538578652058723 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9476e+04 | 1536 |      1 | 5.211e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86619.15498976767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 340.8782860645143, dt = 1.2538578652058723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 294.78 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7832371457587872e-21,4.852354016844237e-22,6.236606184350817e-22)
    sum a = (-5.391040624103187e-23,-7.051901185073461e-23,-1.8872443050210334e-23)
    sum e = 2.3991949516068127e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2538798422535284 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0792e+04 | 1536 |      1 | 4.988e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90490.23374404445 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 342.1321439297202, dt = 1.2538798422535284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 306.28 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.656264648233295e-21,3.235517149835138e-22,6.030402901125668e-22)
    sum a = (6.017967330635304e-23,-7.284273358533556e-23,-3.075998807752655e-23)
    sum e = 2.3991995265805495e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.253902037798211 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0247e+04 | 1536 |      1 | 5.078e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88890.69990613441 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 343.3860237719737, dt = 1.253902037798211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 289.22 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8090548869223043e-21,2.307468882927949e-22,5.570175018377832e-22)
    sum a = (-6.208426076923542e-23,-9.665426175592734e-23,-6.276696353797356e-23)
    sum e = 2.399203695540025e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.2539244456323484 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0976e+04 | 1536 |      1 | 4.959e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91032.3422394907 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 344.6399258097719, dt = 1.2539244456323484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 269.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6507625066738573e-21,9.46253031404293e-23,4.582456660025282e-22)
    sum a = (4.795857041952442e-23,-1.2181139822523617e-22,-5.026092649106553e-23)
    sum e = 2.3992074539754686e-13
    sum de = -7.257520328033309e-29
Info: cfl dt = 1.2539470594926998 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0846e+04 | 1536 |      1 | 4.980e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90652.10884636785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 345.89385025540423, dt = 0.6658008216612075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 277.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.752340504694251e-21,-2.2563244270561898e-24,4.32622712632844e-22)
    sum a = (3.412385870997601e-23,9.665095518047094e-23,-4.1463429603002275e-23)
    sum e = 2.3987690781999165e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.25395916499171 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1220e+04 | 1536 |      1 | 4.920e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48718.29381749392 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 294                                                     [SPH][rank=0]
Info: time since start : 109.686423993 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009108300000000001 s
sph::RenderFieldGetter compute custom field took :  0.000872357 s
rho_t_ampl=-0.00131553, rho_t_phi=3.14159 rad
eps_t_ampl=-1.00331e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-3.92242e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 358.51s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 346.55965107706544, dt = 1.25395916499171 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.44 us    (2.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 340.40 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.795511153852918e-21,1.9166936622721008e-22,3.835579553983828e-22)
    sum a = (6.192554514732856e-23,-3.5563840030459227e-23,-3.918536862434264e-24)
    sum e = 2.3992116143318936e-13
    sum de = -1.1044052673094165e-28
Info: cfl dt = 1.253981728123024 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1023e+04 | 1536 |      1 | 4.951e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91174.27897527782 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 347.81361024205717, dt = 1.253981728123024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 318.27 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.885873247925227e-21,6.417670305023413e-23,4.021840629472538e-22)
    sum a = (-2.0103978774869586e-24,1.1483077828223769e-22,-4.124974927882575e-23)
    sum e = 2.3992145890470656e-13
    sum de = 3.1554436208840472e-30
Info: cfl dt = 1.2540040163454187 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1484e+04 | 1536 |      1 | 4.879e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92530.98648977258 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 349.0675919701802, dt = 1.2540040163454187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 270.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8441839445710236e-21,3.024656832980955e-22,3.2705038254897326e-22)
    sum a = (3.3462543618697404e-23,-3.818069742905565e-23,-3.1610648895029963e-24)
    sum e = 2.399216896769169e-13
    sum de = -2.208810534618833e-29
Info: cfl dt = 1.254026489887747 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1433e+04 | 1536 |      1 | 4.887e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92383.32685290929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 350.3215959865256, dt = 1.254026489887747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 269.58 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9093631599674427e-21,1.5864246392489246e-22,3.4696800504216923e-22)
    sum a = (-4.893731675461675e-24,1.0550619028812304e-22,-6.869166521292577e-23)
    sum e = 2.399218750212323e-13
    sum de = 0
Info: cfl dt = 1.2540491413874384 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1207e+04 | 1536 |      1 | 4.922e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91721.55788359308 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 351.57562247641334, dt = 1.2540491413874384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.8%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 277.54 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8812175896826256e-21,3.810605019649654e-22,2.1973672690950483e-22)
    sum a = (-1.3120491410967519e-23,4.415836587131616e-23,1.5235920208053435e-23)
    sum e = 2.39922017644598e-13
    sum de = -1.5777218104420236e-30
Info: cfl dt = 1.2540719645361433 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1071e+04 | 1536 |      1 | 4.944e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91321.99733340625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 352.8296716178008, dt = 1.2540719645361433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 288.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8581509192988276e-21,3.979626823932164e-22,2.9146832551430023e-22)
    sum a = (5.2720039076730377e-23,5.0221856737873565e-23,-3.180418234029527e-23)
    sum e = 2.3992211740070097e-13
    sum de = -1.8932661725304283e-29
Info: cfl dt = 1.2540907422948049 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0727e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90312.86603888415 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 354.0837435823369, dt = 1.2540907422948049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.6%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 273.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.965283964085962e-21,4.647643930338945e-22,2.220871579676506e-22)
    sum a = (5.777248637409891e-23,1.1796252501952912e-22,6.35762310134301e-24)
    sum e = 2.399221737693776e-13
    sum de = 1.7749370367472766e-30
Info: cfl dt = 1.2540945053436139 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1130e+04 | 1536 |      1 | 4.934e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91499.26028576367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 355.33783432463173, dt = 1.2540945053436139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.8%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 267.89 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0406209792844205e-21,6.551760206218791e-22,2.5398940162282666e-22)
    sum a = (5.589435151486768e-23,-2.1876057809599093e-23,-3.0966150742341526e-23)
    sum e = 2.399221856052891e-13
    sum de = -1.5777218104420236e-30
Info: cfl dt = 1.2540958923361911 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1580e+04 | 1536 |      1 | 4.864e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92824.03469604341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 356.59192882997536, dt = 1.2540958923361911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 266.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.110297137301534e-21,5.400431298399342e-22,1.9175110932741062e-22)
    sum a = (4.4466826737573386e-23,-2.8891138468682163e-23,-1.7156861916661335e-23)
    sum e = 2.399221541568507e-13
    sum de = -3.1554436208840472e-30
Info: cfl dt = 1.2540922450426486 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1461e+04 | 1536 |      1 | 4.882e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92472.50979004847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 357.84602472231154, dt = 0.6639591505147564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.6%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 280.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1334696180999366e-21,5.164651802261918e-22,1.8901874005991073e-22)
    sum a = (1.0462004744027529e-22,-4.191807704359244e-24,-8.783309623426912e-23)
    sum e = 2.3987723172193037e-13
    sum de = -4.733165431326071e-30
Info: cfl dt = 1.2540834716930747 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1279e+04 | 1536 |      1 | 4.911e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48674.57561489792 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 304                                                     [SPH][rank=0]
Info: time since start : 110.49343851600001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000952928 s
sph::RenderFieldGetter compute custom field took :  0.0009661720000000001 s
rho_t_ampl=-0.00132592, rho_t_phi=3.14159 rad
eps_t_ampl=-8.657e-06, eps_t_phi=6.28319 rad
vx_t_ampl=9.28953e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 370.46s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 358.5099838728263, dt = 1.2540834716930747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.64 us    (2.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 333.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2827681131069943e-21,5.194069990775515e-22,5.540563955537655e-23)
    sum a = (4.523395224345657e-24,-6.326796311738262e-25,3.327639767425298e-24)
    sum e = 2.39922059798435e-13
    sum de = -2.3665827156630354e-29
Info: cfl dt = 1.2540607835663868 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4561e+04 | 1536 |      1 | 6.254e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72191.76238938107 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 359.7640673445194, dt = 1.2540607835663868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 310.84 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.228064128756428e-21,5.208399862159658e-22,1.1674028823303476e-22)
    sum a = (1.0739757082364542e-23,-1.8534123953550303e-23,-2.827767252282651e-23)
    sum e = 2.399218857698232e-13
    sum de = 2.997671439839845e-29
Info: cfl dt = 1.2540382881663739 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4514e+04 | 1536 |      1 | 6.266e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72051.18049251374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 361.0181281280858, dt = 1.2540382881663739 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 295.69 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (60.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.244570553434742e-21,4.863641838808499e-22,6.14615128413617e-23)
    sum a = (3.653104564223013e-23,-4.157212658646732e-23,-6.067551211560239e-23)
    sum e = 2.399217037050339e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.2540159806157605 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4628e+04 | 1536 |      1 | 6.237e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72386.37142401688 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 362.27216641625216, dt = 1.2540159806157605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 294.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3042476272717233e-21,4.1979517348791543e-22,-3.4940614635147894e-23)
    sum a = (1.6003825208942238e-22,1.518699128257496e-22,-1.4724289640698182e-23)
    sum e = 2.3992147624956577e-13
    sum de = -9.466330862652142e-30
Info: cfl dt = 1.2539931080765399 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4859e+04 | 1536 |      1 | 6.179e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73063.26558591904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 363.5261823968679, dt = 1.2539931080765399 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 324.91 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.58274063851097e-21,7.315180280981152e-22,-2.459298870978446e-23)
    sum a = (3.9784715891320865e-23,6.463044011745144e-23,-3.983825312958526e-23)
    sum e = 2.3992120658642587e-13
    sum de = 5.99534287967969e-29
Info: cfl dt = 1.2539703728167502 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7697e+04 | 1536 |      1 | 5.546e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81403.60003873911 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 364.78017550494445, dt = 1.2539703728167502 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 293.04 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.558615863981126e-21,7.578631680469267e-22,-9.029534640484089e-23)
    sum a = (1.1639145606503445e-23,-8.59392200334683e-23,6.642448750470108e-25)
    sum e = 2.3992089509661017e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.2539478456804558 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1721e+04 | 1536 |      1 | 4.842e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93227.91997946684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 366.0341458777612, dt = 1.2539478456804558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 304.79 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.555229930713779e-21,5.556993513040232e-22,-6.406795171340831e-23)
    sum a = (2.983853691849065e-23,7.718916244121231e-25,6.709627339628694e-23)
    sum e = 2.399205421477959e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.253925532781577 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1437e+04 | 1536 |      1 | 4.886e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92390.21327975117 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 367.28809372344165, dt = 1.253925532781577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 294.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6005167881645385e-21,6.11040058090911e-22,6.171692817695919e-23)
    sum a = (-1.4974818926912727e-22,3.6195337819233604e-23,-2.3958805267870098e-23)
    sum e = 2.399201481465351e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2539034401607998 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0543e+04 | 1536 |      1 | 5.029e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89763.30021998876 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 368.5420192562232, dt = 1.2539034401607998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 279.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3046708689301416e-21,6.786273903939316e-22,-2.541324418377973e-23)
    sum a = (-1.1345521705975743e-22,9.042633334196626e-23,-3.407700691291709e-23)
    sum e = 2.3991971354441835e-13
    sum de = -4.417621069237666e-29
Info: cfl dt = 1.2538815737986075 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3511e+04 | 1536 |      1 | 6.533e-02 | 0.1% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69095.92799918774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 369.795922696384, dt = 0.6643939722031291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 277.27 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2547283532367817e-21,7.727082452193692e-22,-5.439742609284451e-23)
    sum a = (-2.327829121300689e-23,-1.1545783931839772e-22,-1.8213943540826752e-23)
    sum e = 2.3987609276629813e-13
    sum de = -1.8932661725304283e-29
Info: cfl dt = 1.2538701097491525 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4412e+04 | 1536 |      1 | 6.292e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38014.127484168625 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 314                                                     [SPH][rank=0]
Info: time since start : 111.387705741 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001037926 s
sph::RenderFieldGetter compute custom field took :  0.0009521960000000001 s
rho_t_ampl=-0.00130272, rho_t_phi=3.14159 rad
eps_t_ampl=-7.29137e-06, eps_t_phi=6.28319 rad
vx_t_ampl=5.74766e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 382.41s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 370.46031666858715, dt = 1.2538701097491525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.11 us    (2.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 362.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.25007269499418e-21,5.595441752464272e-22,-7.196568363681259e-23)
    sum a = (-1.5474773135919354e-23,6.251885586447471e-23,3.7236976331957526e-23)
    sum e = 2.399191231750724e-13
    sum de = -1.8932661725304283e-29
Info: cfl dt = 1.2538485693727441 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0858e+04 | 1536 |      1 | 4.978e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90684.74325068989 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 371.7141867783363, dt = 1.2538485693727441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 282.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2365289619247942e-21,7.49519541535134e-22,9.487971357966468e-24)
    sum a = (6.748059191406883e-23,2.2647064666750425e-23,-5.240739273537711e-23)
    sum e = 2.399185001685626e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.253827302788457 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1301e+04 | 1536 |      1 | 4.907e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91984.19112488013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 372.968035347709, dt = 1.253827302788457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.8%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 281.46 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.374082500910744e-21,7.529222143407284e-22,-1.124220804752366e-22)
    sum a = (3.9626000269414e-23,-2.6874495555128153e-23,4.743849108805731e-24)
    sum e = 2.39917929407623e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2538062818671805 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0928e+04 | 1536 |      1 | 4.966e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90886.05470108043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 374.2218626504975, dt = 1.2538062818671805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 285.44 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4062488669505356e-21,6.881789502521379e-22,-7.064531895617013e-23)
    sum a = (1.6003825208942238e-22,-7.385369965666216e-23,-5.462769293212638e-23)
    sum e = 2.399173177314732e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2537855134024087 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9497e+04 | 1536 |      1 | 5.207e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86680.72203234497 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 375.47566893236467, dt = 1.2537855134024087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 270.52 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.674584078387742e-21,5.661247770570644e-22,-1.7635693517262683e-22)
    sum a = (-3.584327794730038e-23,1.6201814164179996e-22,4.0311145774873263e-23)
    sum e = 2.3991666874392155e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.253765002969146 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0368e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89238.22701662095 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 376.7294544457671, dt = 1.253765002969146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.8%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 271.98 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5179846647729685e-21,9.171207583371913e-22,-6.629976105538367e-23)
    sum a = (-8.83516961948216e-23,-6.784700826498558e-23,8.953426953184103e-23)
    sum e = 2.3991598316781603e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.2537447560684554 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0742e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90334.59265918532 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 377.98321944873624, dt = 1.2537447560684554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 272.37 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.365617667742378e-21,6.87965831130925e-22,7.681047481030999e-23)
    sum a = (5.885704312379583e-23,-4.206480632946988e-24,-4.0316327155072025e-23)
    sum e = 2.399152617731471e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2537247781228085 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0638e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90028.73794453486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 379.2369642048047, dt = 1.2537247781228085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 272.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.539146747693884e-21,7.225841262021149e-22,-5.513485584123039e-23)
    sum a = (-2.692875051686479e-23,8.658842608376889e-24,-5.7144391581849004e-24)
    sum e = 2.3991450536866633e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.2537050744747542 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0455e+04 | 1536 |      1 | 5.044e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89488.6217938098 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 380.4906889829275, dt = 1.2537050744747542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 286.53 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.448573032792366e-21,7.415082258567087e-22,-4.060845503585713e-23)
    sum a = (-6.33275331408392e-23,2.5094950893001007e-23,1.978441972739795e-23)
    sum e = 2.3991371480120193e-13
    sum de = 0
Info: cfl dt = 1.2536856503856786 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4641e+04 | 1536 |      1 | 6.234e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72403.2048378771 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 381.74439405740225, dt = 0.6662554069457656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 306.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3842403007127833e-21,7.685306971216656e-22,-1.1442954030115827e-23)
    sum a = (-3.4547100368394313e-23,-5.820438841862469e-23,-8.385924956709319e-23)
    sum e = 2.3987355848477534e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2536754931124612 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0567e+04 | 1536 |      1 | 5.025e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47731.55111923571 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 112.215796365 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008717960000000001 s
sph::RenderFieldGetter compute custom field took :  0.000754537 s
rho_t_ampl=-0.00124655, rho_t_phi=3.14159 rad
eps_t_ampl=-5.97032e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.04134e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 394.36s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 382.410649464348, dt = 1.2536754931124612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.81 us    (2.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 368.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.343609101504626e-21,6.67811685406553e-22,-1.5110181761486576e-22)
    sum a = (-8.914527430435592e-24,-3.544965338857547e-24,-4.305776330030604e-23)
    sum e = 2.399126897644343e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.253656454380392 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0182e+04 | 1536 |      1 | 5.089e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88683.0007899094 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 383.66432495746045, dt = 1.253656454380392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 285.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3495344847224823e-21,6.976299178851318e-22,-1.795055487798613e-22)
    sum a = (-1.04752310458531e-23,5.600640696553931e-23,-1.0011172116271133e-22)
    sum e = 2.399116807566976e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2536377620341275 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9876e+04 | 1536 |      1 | 5.141e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87782.4825989516 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 384.91798141184086, dt = 1.2536377620341275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 311.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.33006536843524e-21,8.051707305908529e-22,-3.4077241411270655e-22)
    sum a = (-3.0076610351350944e-23,6.775870590909639e-23,4.9403933828812425e-23)
    sum e = 2.3991077952954165e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.2536193660714685 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0295e+04 | 1536 |      1 | 5.070e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89012.36155470498 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 386.171619173875, dt = 1.2536193660714685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.7%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 273.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.279276369425043e-21,8.974815859075316e-22,-1.8511945034847624e-22)
    sum a = (-1.3490827862083539e-24,-2.3015709081207115e-23,-7.293927380296392e-23)
    sum e = 2.3990984574250856e-13
    sum de = 0
Info: cfl dt = 1.2536012724614445 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0311e+04 | 1536 |      1 | 5.067e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89059.69560960667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 387.42523853994646, dt = 1.2536012724614445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 271.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3089032855143246e-21,8.11730472560232e-22,-3.5324212399749833e-22)
    sum a = (1.1850766435712598e-23,-4.7784129189734127e-23,5.583644641741504e-23)
    sum e = 2.3990888312851813e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2535834859891908 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0624e+04 | 1536 |      1 | 5.016e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89976.68385091666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 388.6788398124079, dt = 1.2535834859891908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 308.14 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3275259184847304e-21,7.363042024279939e-22,-2.0252977348711642e-22)
    sum a = (2.5711930748912155e-23,-4.9480118240035465e-23,3.58276219600698e-23)
    sum e = 2.399078927474621e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.2535660113550229 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0125e+04 | 1536 |      1 | 5.099e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88511.09755259925 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 389.93242329839705, dt = 1.2535660113550229 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.6%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 274.02 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3800078841286003e-21,6.732142066931344e-22,-1.7015885028716457e-22)
    sum a = (1.5051531477501046e-23,-1.5394020363445256e-23,1.0408513174455907e-23)
    sum e = 2.399068756995244e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.2535487158035858 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0156e+04 | 1536 |      1 | 5.094e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88598.59815754778 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 391.1859893097521, dt = 1.2535487158035858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 280.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.369850084326561e-21,6.7528210475534e-22,-1.730435373701578e-22)
    sum a = (-3.1901840003279895e-23,7.252243492061824e-23,-4.4005722808437544e-24)
    sum e = 2.3990583310263295e-13
    sum de = -1.135959703518257e-28
Info: cfl dt = 1.2535317123489178 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0333e+04 | 1536 |      1 | 5.064e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89119.23374286728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 392.43953802555563, dt = 1.2535317123489178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 268.62 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3232935019005473e-21,8.212950003940564e-22,-1.878417493041328e-22)
    sum a = (-1.097783051522484e-23,-3.856829007083472e-23,3.128108184231835e-23)
    sum e = 2.399047661219092e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.253515035407418 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4907e+04 | 1536 |      1 | 6.167e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73176.00718659046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 393.6930697379046, dt = 0.6679125222043467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 293.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.314828668732181e-21,7.2590689871172e-22,-1.445846805372996e-22)
    sum a = (1.343792265478125e-23,-1.3436773103157737e-23,6.337989669288651e-24)
    sum e = 2.398697999642428e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2535063543359333 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0505e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47753.30914285323 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 334                                                     [SPH][rank=0]
Info: time since start : 113.046701509 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000970551 s
sph::RenderFieldGetter compute custom field took :  0.0009119410000000001 s
rho_t_ampl=-0.0011589, rho_t_phi=3.14159 rad
eps_t_ampl=-4.72677e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.48099e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 406.31s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 394.3609822601089, dt = 1.2535063543359333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.10 us    (2.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 368.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3419161348709527e-21,7.17456170154285e-22,-1.4496987201553288e-22)
    sum a = (-6.4941141963559e-23,-1.1126333210516978e-22,3.7821093699999794e-23)
    sum e = 2.399034087380594e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.2534897132122467 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9346e+04 | 1536 |      1 | 5.234e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86214.97406636998 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 395.61448861444484, dt = 1.2534897132122467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 303.46 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1997069376424014e-21,5.166765943944349e-22,-7.782938464185381e-23)
    sum a = (-1.3173396618269808e-22,5.875918269822801e-23,-5.057594670623339e-23)
    sum e = 2.399021143121516e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2534734320553944 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9269e+04 | 1536 |      1 | 5.248e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85987.66748380495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 396.86797832765706, dt = 1.2534734320553944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 299.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.87 us   (95.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0016298415026337e-21,6.968889866566921e-22,-1.9662738055292196e-22)
    sum a = (2.4389300566354946e-23,-1.233050403571787e-23,1.6083646075997132e-24)
    sum e = 2.3990097312567535e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2534574918055772 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0101e+04 | 1536 |      1 | 5.103e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88430.12093778716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 398.12145175971244, dt = 1.2534574918055772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 326.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.121830472493433e-21,6.368786203467547e-22,-1.6190553998499272e-22)
    sum a = (3.729817114811331e-23,6.402485890544758e-23,4.4137093532449133e-23)
    sum e = 2.398998107651135e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2534418976432629 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9784e+04 | 1536 |      1 | 5.157e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87497.9937371075 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 399.37490925151803, dt = 1.2534418976432629 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 328.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1776983714046495e-21,7.649831033136464e-22,-7.992828076729907e-23)
    sum a = (4.10015356592735e-23,5.8322437037311036e-24,1.7624243889495414e-23)
    sum e = 2.398986308705574e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2534266536105751 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0095e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88413.03744849037 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 400.6283511491613, dt = 1.2534266536105751 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 297.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2369522035832125e-21,7.358208644064712e-22,-7.445374201070902e-23)
    sum a = (1.6797403318476562e-23,-6.260546618370456e-23,5.586284338448761e-23)
    sum e = 2.398974347322716e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253411763655778 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0093e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88403.61507421895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 401.88177780277186, dt = 1.253411763655778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 330.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2657326363556574e-21,6.144604004091006e-22,1.953004294052812e-23)
    sum a = (-1.2009482057619464e-23,-6.68481383183266e-23,7.972695912319668e-23)
    sum e = 2.398962236703231e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.2533972316266968 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9515e+04 | 1536 |      1 | 5.204e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86706.59588301646 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 403.13518956642764, dt = 1.2533972316266968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.5%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 293.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1997069376424014e-21,5.280175282269649e-22,1.3441537448966267e-22)
    sum a = (-1.8701990781358945e-23,9.919240715908915e-23,8.859782636157862e-23)
    sum e = 2.3989499902029197e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2533830612699914 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9744e+04 | 1536 |      1 | 5.164e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87378.3090350512 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 404.38858679805435, dt = 1.2533830612699914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 993.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 292.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.182777271305669e-21,7.564052782621064e-22,2.5102174953599503e-22)
    sum a = (2.2616976121728285e-23,1.2209984526856495e-22,-3.948754540371829e-23)
    sum e = 2.3989376213186217e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2533692562303667 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9957e+04 | 1536 |      1 | 5.127e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88001.6005937838 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 405.6419698593243, dt = 0.6693451965454642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 284.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2132506707117875e-21,8.524856812643146e-22,1.443209330130867e-22)
    sum a = (8.597096186621863e-24,-8.006383585307956e-23,-9.628907104567297e-24)
    sum e = 2.398651970363493e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.2533621242567656 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0050e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47141.06717384551 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 344                                                     [SPH][rank=0]
Info: time since start : 114.05217446 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008738000000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008096510000000001 s
rho_t_ampl=-0.00104201, rho_t_phi=3.14159 rad
eps_t_ampl=-3.59164e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.88278e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 418.26s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 406.3113150558698, dt = 1.2533621242567656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.40 us    (2.2%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 396.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.233566270315866e-21,6.844788923164341e-22,1.4224529361065695e-22)
    sum a = (-6.721606587755739e-23,4.684843937528197e-23,2.9300274251900936e-23)
    sum e = 2.398922076890332e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2533487944107045 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1888e+04 | 1536 |      1 | 7.017e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64298.34521100204 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 407.5646771801265, dt = 1.2533487944107045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 307.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0964359729883347e-21,8.227256755129133e-22,2.033649377404551e-22)
    sum a = (1.8358106933894068e-23,3.522820970532496e-23,1.0248186505277456e-22)
    sum e = 2.398907561793065e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.253335931659872 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1957e+04 | 1536 |      1 | 6.996e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64498.27429760661 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 408.81802597453725, dt = 1.253335931659872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 334.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1675405716026103e-21,8.595944051736276e-22,3.776701708563418e-22)
    sum a = (5.0312852144476253e-23,-2.3533000853632164e-23,-1.394633381389362e-23)
    sum e = 2.398894889339945e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2533234453514246 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1946e+04 | 1536 |      1 | 6.999e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64466.332163138555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 410.0713619061971, dt = 1.2533234453514246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 318.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2606537364546378e-21,7.932753512190998e-22,2.872290811615918e-22)
    sum a = (-2.822492809577085e-23,7.032152792323258e-23,-9.031868200850498e-23)
    sum e = 2.3988821378706726e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2533113395935804 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2417e+04 | 1536 |      1 | 6.852e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65848.49754222963 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 411.32468535154857, dt = 1.2533113395935804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 319.10 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1539968385332246e-21,9.40229380897092e-22,1.2617202553881154e-22)
    sum a = (-2.986498952214179e-23,-2.849141095330434e-23,-5.538221149811631e-23)
    sum e = 2.398869340734249e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2532996174476219 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2555e+04 | 1536 |      1 | 6.810e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66253.62303380648 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 412.5779966911422, dt = 1.2532996174476219 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.3%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 346.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.152303871899551e-21,8.425967473790732e-22,7.865465838285782e-23)
    sum a = (-7.695062402117845e-23,-4.128672133423221e-23,-2.3484436111731595e-23)
    sum e = 2.3988565118537523e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2532882818752458 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2561e+04 | 1536 |      1 | 6.808e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66271.24381811888 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 413.8312963085898, dt = 1.2532882818752458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 321.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0016298415026337e-21,7.828338059107087e-22,6.921062464209761e-23)
    sum a = (1.849036995214979e-23,-1.1522774816535013e-22,4.1141265619842117e-23)
    sum e = 2.398843665314185e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2532773357312752 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1702e+04 | 1536 |      1 | 7.078e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63748.25303799015 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 415.08458459046506, dt = 1.2532773357312752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 348.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1032078395230274e-21,5.920994772242768e-22,1.6126935775090062e-22)
    sum a = (1.3898197958311158e-22,8.064908679255074e-23,4.920333520413982e-23)
    sum e = 2.3988308152113545e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.253266781763198 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8637e+04 | 1536 |      1 | 5.364e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84118.74533956464 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 416.33786192619635, dt = 1.253266781763198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.4%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 310.75 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3317583350689134e-21,8.159151633775738e-22,2.2798626785872127e-22)
    sum a = (-4.6159793371246616e-23,-1.577963939299879e-22,-7.600675082361341e-24)
    sum e = 2.398817975638606e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.2532566226106703 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0078e+04 | 1536 |      1 | 5.107e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88348.60683566504 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 417.59112870795957, dt = 0.670519143671072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.9%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 276.26 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2047858375434214e-21,5.6068504710936575e-22,1.8729458012966834e-22)
    sum a = (-1.5950920001639948e-23,-5.776549219203003e-23,8.895496599928769e-24)
    sum e = 2.398602149964161e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.2532514556732917 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0669e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48197.13397202447 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 354                                                     [SPH][rank=0]
Info: time since start : 115.01815103800001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001047605 s
sph::RenderFieldGetter compute custom field took :  0.0008762150000000001 s
rho_t_ampl=-0.000898858, rho_t_phi=3.14159 rad
eps_t_ampl=-2.5931e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.23675e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 430.21s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 418.26164785163064, dt = 1.2532514556732917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.22 us    (2.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 372.51 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.165847604968937e-21,5.218253457019709e-22,2.0397337364759861e-22)
    sum a = (1.0713304478713398e-23,3.896583472975891e-23,2.4381500814800512e-23)
    sum e = 2.398802008220292e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.2532417998410572 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0189e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88674.1282622959 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 419.51489930730395, dt = 1.2532417998410572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 282.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2200225372464802e-21,6.312843596617113e-22,2.4423321827402583e-22)
    sum a = (-7.208334494936792e-23,4.2467885627390415e-23,3.167726484782932e-23)
    sum e = 2.3987873535240317e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2532326534644707 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0520e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89645.74230362922 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 420.768141107145, dt = 1.2532326534644707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.6%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 299.04 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0659625735822167e-21,6.866973977867078e-22,2.885038791776218e-22)
    sum a = (2.830428590672429e-23,8.564540626317805e-23,4.108767698442618e-23)
    sum e = 2.398774678144695e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.2532239095564361 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0713e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90212.05279604836 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 422.0213737606095, dt = 1.2532239095564361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 402.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1675405716026103e-21,8.210970837701567e-22,3.458926562487547e-22)
    sum a = (1.1956576850317174e-23,-1.4917466633947797e-23,6.356077555423589e-23)
    sum e = 2.3987620621855024e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.2532155710771151 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0395e+04 | 1536 |      1 | 5.053e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89278.56039688992 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 423.2745976701659, dt = 1.2532155710771151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 276.37 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1692335382362834e-21,7.393771379750634e-22,4.396299221077737e-22)
    sum a = (3.5605204514440086e-23,3.011331850544106e-23,1.0322252062386076e-22)
    sum e = 2.39874953413321e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2532076400541936 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0252e+04 | 1536 |      1 | 5.077e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88857.055306102 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 424.52781324124305, dt = 1.2532076400541936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 281.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2521889032862717e-21,8.053369118401575e-22,5.938415318281005e-22)
    sum a = (-4.4493279341224534e-23,-2.5699585985269783e-23,6.248814907732709e-23)
    sum e = 2.398737107554094e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2532001184124901 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0509e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89612.32929110662 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 425.78102088129725, dt = 1.2532001184124901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 279.32 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (60.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1573827718005707e-21,7.381514317855717e-22,6.4662737483363e-22)
    sum a = (7.089297778506643e-24,1.0616306216863213e-23,8.811688552340492e-23)
    sum e = 2.3987247960269186e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2531930079660962 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0784e+04 | 1536 |      1 | 4.990e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90417.45149090045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 427.03422099970976, dt = 1.2531930079660962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.3%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 312.32 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1760054047709764e-21,7.742112904252658e-22,7.731138074297898e-22)
    sum a = (-7.369695377208772e-23,1.4881120136548228e-23,2.4210582320047906e-23)
    sum e = 2.398712612995647e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.2531863104181717 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0305e+04 | 1536 |      1 | 5.068e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89010.98372289693 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 428.28741400767586, dt = 1.2531863104181717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 306.75 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0490329072454844e-21,7.955451086089476e-22,7.634107115908468e-22)
    sum a = (3.3938690484418e-23,-1.0581651433215209e-22,3.5122868493276996e-23)
    sum e = 2.3987005717583296e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2531800273607019 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0602e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89881.49924520006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 429.54060031809405, dt = 0.6713803292975058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 287.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1015148728893543e-21,6.488668679901152e-22,7.938290784296357e-22)
    sum a = (-1.5450965792633324e-22,-7.068350106337978e-23,-1.062483945160197e-23)
    sum e = 2.3985535780172514e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253176950912618 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0006e+04 | 1536 |      1 | 5.119e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47215.973116734494 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 364                                                     [SPH][rank=0]
Info: time since start : 115.84143057000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001040932 s
sph::RenderFieldGetter compute custom field took :  0.0009859 s
rho_t_ampl=-0.000733074, rho_t_phi=3.14159 rad
eps_t_ampl=-1.75583e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.53416e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 442.16s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 430.21198064739156, dt = 1.253176950912618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.10 us    (2.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 329.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.859420644274083e-21,5.720929390948878e-22,7.651572189094247e-22)
    sum a = (5.2415834134742217e-23,-7.572551844011928e-24,1.4727283673966923e-22)
    sum e = 2.398685767821712e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2531711867983784 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0025e+04 | 1536 |      1 | 5.116e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88187.72378639613 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 431.4651575983042, dt = 1.2531711867983784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 333.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0490329072454844e-21,6.021358637087767e-22,1.0486521587123596e-21)
    sum a = (-6.068227277572477e-23,8.988045454560035e-23,2.1324344709988688e-23)
    sum e = 2.398672411484343e-13
    sum de = 8.077935669463161e-28
Info: cfl dt = 1.2531659618416078 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4092e+04 | 1536 |      1 | 6.375e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70762.32797014776 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 432.7183287851026, dt = 1.2531659618416078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 302.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8831221771455078e-21,7.758389521936753e-22,9.964575910454462e-22)
    sum a = (-5.912156916030727e-24,-3.51216759773393e-23,4.452527063357245e-23)
    sum e = 2.398660985537941e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2531611554395585 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4158e+04 | 1536 |      1 | 6.358e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70953.71354572466 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 433.9714947469442, dt = 1.2531611554395585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 270.78 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.950840842492437e-21,6.535010334922501e-22,1.0667922359641324e-21)
    sum a = (1.73000027878483e-23,1.2674194461434856e-22,2.8989939603874847e-23)
    sum e = 2.3986497495025904e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2531567693561536 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9938e+04 | 1536 |      1 | 5.131e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87930.66602348936 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 435.22465590238374, dt = 1.2531567693561536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 304.54 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9559197423934565e-21,9.13744434804765e-22,1.0933870383303437e-21)
    sum a = (-9.562616219888626e-24,-2.7982056253605673e-24,2.2951790185341437e-23)
    sum e = 2.3986387256753946e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.25315280455669 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0093e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88385.51879161525 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 436.4778126717399, dt = 1.25315280455669 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.7%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 274.97 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9423760093240707e-21,8.290870100385984e-22,1.1183657646615647e-21)
    sum a = (-5.913479546213285e-23,-1.5689448672532556e-23,-1.600913586058232e-23)
    sum e = 2.3986279259297975e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531492619025262 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0007e+04 | 1536 |      1 | 5.119e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88133.74441517638 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 437.7309654762966, dt = 1.2531492619025262 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 295.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8492628444720432e-21,8.013415353840046e-22,1.0738919310028551e-21)
    sum a = (5.875123270919125e-23,-1.0571253157546579e-22,5.630528369509111e-25)
    sum e = 2.3986173620035637e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.253146142142833 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0122e+04 | 1536 |      1 | 5.099e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88471.01826643999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 438.98411473819914, dt = 1.253146142142833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.5%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 276.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0016298415026337e-21,6.1246085223233e-22,1.0849812315106072e-21)
    sum a = (-1.2340139603258766e-23,-2.788087310719349e-23,1.0138109574803215e-22)
    sum e = 2.398607045369904e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2531434459146142 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9936e+04 | 1536 |      1 | 5.131e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87925.2682562559 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 440.237260880342, dt = 1.2531434459146142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 272.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9440689759577442e-21,6.262955639418784e-22,1.2751961579529758e-21)
    sum a = (-6.189909254367741e-23,7.109101065575948e-23,-1.57773126676675e-23)
    sum e = 2.398596987225041e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.253141173742717 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0251e+04 | 1536 |      1 | 5.077e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88849.17303179327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 441.49040432625657, dt = 0.6719091168957902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.7%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 273.41 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8204824116995983e-21,7.360732491112287e-22,1.191187091911519e-21)
    sum a = (-3.772141280653162e-23,6.861102094006801e-24,5.076526662982502e-23)
    sum e = 2.3985111764847464e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253140259138596 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0383e+04 | 1536 |      1 | 5.055e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47847.27606158679 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 374                                                     [SPH][rank=0]
Info: time since start : 116.69464518900001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000937498 s
sph::RenderFieldGetter compute custom field took :  0.0009172710000000001 s
rho_t_ampl=-0.000548841, rho_t_phi=3.14159 rad
eps_t_ampl=-1.10045e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.76768e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 454.11s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 442.16231344315236, dt = 1.253140259138596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.52 us    (2.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 347.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8204824116995983e-21,7.230885339549393e-22,1.2771583741371127e-21)
    sum a = (5.970352644063244e-23,-1.821864953075862e-24,-1.9744388625175678e-24)
    sum e = 2.39858481326147e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531385088214202 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0258e+04 | 1536 |      1 | 5.076e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88868.5322944254 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 443.41545370229096, dt = 1.2531385088214202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 280.30 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.928832276254685e-21,7.1537636002483465e-22,1.2416390046614284e-21)
    sum a = (-3.900436408361211e-23,3.429955282187283e-24,8.648214931456089e-23)
    sum e = 2.398574058616224e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2531373142531332 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0277e+04 | 1536 |      1 | 5.073e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88924.35834623376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 444.66859221111235, dt = 1.2531373142531332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 320.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8577276776404094e-21,7.22967637289815e-22,1.4054371914861602e-21)
    sum a = (4.761468657205955e-25,2.402738554960443e-23,-2.8913825088123786e-23)
    sum e = 2.398565005715545e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2531365441783715 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0275e+04 | 1536 |      1 | 5.073e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88919.14509694412 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 445.9217295253655, dt = 1.2531365441783715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.8%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 271.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.878043277244488e-21,7.65985150672658e-22,1.2969007199169011e-21)
    sum a = (1.9773321229230286e-23,-9.21180277190674e-23,3.3995019687688573e-23)
    sum e = 2.398556252466008e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531361991425178 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9795e+04 | 1536 |      1 | 5.155e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87508.75945722892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 447.17486606954384, dt = 1.2531361991425178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.8%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 276.10 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9186744764526458e-21,5.777783889311895e-22,1.3789177958484171e-21)
    sum a = (8.058785702321078e-23,-1.1952213720671982e-22,7.032449656320763e-23)
    sum e = 2.3985478142501677e-13
    sum de = 4.291403324402304e-28
Info: cfl dt = 1.2531362790421336 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9872e+04 | 1536 |      1 | 5.142e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87734.73812638594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 448.4280022686864, dt = 1.2531362790421336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.4%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 297.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0405680740771182e-21,4.108242276137551e-22,1.48980686508148e-21)
    sum a = (-3.782722322113619e-24,-1.0682269813956177e-23,-1.136510118378761e-23)
    sum e = 2.3985397000870863e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.2531367836709082 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0298e+04 | 1536 |      1 | 5.070e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88987.64160524392 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 449.6811385477285, dt = 1.2531367836709082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.8%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 270.29 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0134806079383464e-21,4.656460087149553e-22,1.4243807394593171e-21)
    sum a = (-7.499313135099378e-24,1.3593827364642421e-22,-4.283157185463903e-23)
    sum e = 2.3985319187261657e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.2531377127111936 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0330e+04 | 1536 |      1 | 5.064e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89079.95945782373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 450.9342753313994, dt = 1.2531377127111936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.8%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 272.97 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9762353419975353e-21,7.278628155920388e-22,1.3509909855485983e-21)
    sum a = (-1.1985674714333434e-22,-6.424027712990744e-23,-2.997290751317064e-23)
    sum e = 2.398524478547475e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253139065734262 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0499e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89576.81306317002 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 452.1874130441106, dt = 1.253139065734262 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 309.38 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7493778130853227e-21,5.219284695240172e-22,1.3214876028409021e-21)
    sum a = (7.750612869785249e-24,1.5326418655288784e-22,9.611557622219014e-23)
    sum e = 2.398517387553305e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2531408422005494 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0197e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88690.41622352283 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 453.4405521098449, dt = 0.6720941290683982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.7%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 263.00 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.830640211501638e-21,7.612083891039663e-22,1.4650895196858907e-21)
    sum a = (7.015891803374719e-23,-4.8168292551108225e-23,-2.6240794822650812e-23)
    sum e = 2.398479228365171e-13
    sum de = -5.301145283085199e-28
Info: cfl dt = 1.2531421053005398 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0165e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47516.739186963125 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 384                                                     [SPH][rank=0]
Info: time since start : 117.51685805000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000924214 s
sph::RenderFieldGetter compute custom field took :  0.0008863040000000001 s
rho_t_ampl=-0.000350798, rho_t_phi=3.14159 rad
eps_t_ampl=-6.42975e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.93161e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 466.06s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 454.11264623891327, dt = 1.2531421053005398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.45 us    (2.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 354.90 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9254463429873385e-21,6.331769607885643e-22,1.3910885755003808e-21)
    sum a = (9.694879238144347e-24,-7.074340691090616e-24,2.4762405395866994e-23)
    sum e = 2.398509043333804e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2531443939032942 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8797e+04 | 1536 |      1 | 5.334e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84578.26583713217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 455.3657883442138, dt = 1.2531443939032942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 303.75 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9389900760567242e-21,6.500438021916251e-22,1.45407657385116e-21)
    sum a = (-1.2915483732671152e-23,1.054138483561636e-22,2.055811656071931e-24)
    sum e = 2.3985019315551805e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.253147241556883 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9530e+04 | 1536 |      1 | 5.201e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86732.46904723704 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 456.6189327381171, dt = 1.253147241556883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 306.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8848151437791812e-21,8.526453268605685e-22,1.4424254882323828e-21)
    sum a = (5.295149935867789e-23,9.511086599641438e-25,2.953296151840802e-23)
    sum e = 2.398496136339928e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2531505095012592 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9771e+04 | 1536 |      1 | 5.159e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87439.12260736554 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 457.87207997967397, dt = 1.2531505095012592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 2.11 us    (0.6%)
   LB compute        : 310.04 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.003322808136307e-21,7.883822395265362e-22,1.4966511912840541e-21)
    sum a = (-3.459339242478382e-23,5.555153326300886e-23,4.9255205471334276e-23)
    sum e = 2.398490719047229e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2531541970663869 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9977e+04 | 1536 |      1 | 5.124e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88044.16375544509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 459.12523048917524, dt = 1.2531541970663869 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 334.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9017448101159135e-21,8.922041623160247e-22,1.5707330287769133e-21)
    sum a = (1.3482892080988196e-22,7.240799318160454e-23,2.2739710556171867e-23)
    sum e = 2.398485688098274e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.2531583030957978 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9652e+04 | 1536 |      1 | 5.180e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87091.71677676811 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 460.37838468624165, dt = 1.2531583030957978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 294.66 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.189549137840362e-21,9.935056479638774e-22,1.5826154840002945e-21)
    sum a = (5.55041756110133e-23,6.96784151423521e-23,3.287494821194097e-23)
    sum e = 2.3984810487794884e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2531628263333283 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0095e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88393.17578232757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 461.63154298933745, dt = 1.2531628263333283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 293.88 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.165847604968937e-21,1.0791161931053491e-21,1.6301636756282743e-21)
    sum a = (-4.548525197814244e-23,-1.353554542023814e-22,5.1222817640138946e-24)
    sum e = 2.3984768060014084e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.253167765414615 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9776e+04 | 1536 |      1 | 5.159e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87453.89750555537 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 462.88470581567077, dt = 1.253167765414615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 309.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0608836736811967e-21,7.8102593577992585e-22,1.6191934490581677e-21)
    sum a = (7.974137370637416e-23,1.0229037451566834e-22,-7.08086017031452e-23)
    sum e = 2.398472964237327e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.253173118867573 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9382e+04 | 1536 |      1 | 5.228e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86297.66903326598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 464.1378735810854, dt = 1.253173118867573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 296.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2132506707117875e-21,1.0581190256353216e-21,1.482880945038977e-21)
    sum a = (5.677059401081183e-23,-1.2106169197843454e-22,1.0849379781269691e-25)
    sum e = 2.398469527519411e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.2531788851128807 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9098e+04 | 1536 |      1 | 5.279e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85464.34036893911 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 465.39104669995294, dt = 0.671932334721248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 299.38 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2572678031872913e-21,8.36823569962694e-22,1.5273895444049196e-21)
    sum a = (5.2835769217704134e-23,-6.169280292157617e-24,-4.927068502082101e-23)
    sum e = 2.398460933471594e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.253182286388847 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9909e+04 | 1536 |      1 | 5.136e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47102.37214267787 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 394                                                     [SPH][rank=0]
Info: time since start : 118.351673508 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009005910000000001 s
sph::RenderFieldGetter compute custom field took :  0.000795153 s
rho_t_ampl=-0.00014392, rho_t_phi=3.14159 rad
eps_t_ampl=-3.94468e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.02198e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 478.01s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 466.0629790346742, dt = 1.253182286388847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.22 us    (2.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 341.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3486880014056457e-21,8.676801187998217e-22,1.4490546612433099e-21)
    sum a = (1.0075796730720823e-22,-1.1185713525664903e-22,4.449189983391934e-23)
    sum e = 2.3984658265973284e-13
    sum de = -6.058451752097371e-28
Info: cfl dt = 1.2531885427889018 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1927e+04 | 1536 |      1 | 7.005e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64402.37203738862 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 467.316161321063, dt = 1.2531885427889018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 337.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.467195665762772e-21,6.612952518258665e-22,1.5635622055951456e-21)
    sum a = (-3.679226510328518e-23,-5.263349979720759e-23,3.5678945116408745e-23)
    sum e = 2.3984630353953403e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2531953483432758 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5525e+04 | 1536 |      1 | 6.018e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74971.51607460764 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 468.5693498638519, dt = 1.2531953483432758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 278.02 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3757754675444172e-21,6.324466209346335e-22,1.6027527467087273e-21)
    sum a = (2.3706492734609786e-23,-4.619851001160028e-23,1.4591086711199883e-23)
    sum e = 2.3984610572395686e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2532025600600092 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0140e+04 | 1536 |      1 | 5.096e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88527.02641015059 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 469.8225452121952, dt = 1.2532025600600092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 308.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4062488669505356e-21,5.785915998324962e-22,1.6078247308993085e-21)
    sum a = (-8.1672413772907695e-25,4.5681634790184877e-23,5.85009726217104e-23)
    sum e = 2.398459496222796e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2532101760817176 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9935e+04 | 1536 |      1 | 5.131e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87924.05843163424 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 471.0757477722552, dt = 1.2532101760817176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.6%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 280.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.423178533287268e-21,6.934020995074427e-22,1.7086527358169656e-21)
    sum a = (-2.3724678899619947e-24,-7.77585037153772e-23,9.204001217439011e-23)
    sum e = 2.398458354433957e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2532181942361085 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9763e+04 | 1536 |      1 | 5.161e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87419.86710746828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 472.32895794833695, dt = 1.2532181942361085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.5%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 280.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.429950399821961e-21,5.185822151621474e-22,1.8450146865034133e-21)
    sum a = (4.821441669546283e-23,-4.3858655805339037e-23,2.5653569611387576e-23)
    sum e = 2.398457632917407e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.253224749007643 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4614e+04 | 1536 |      1 | 6.240e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72295.86267103865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 473.5821761425731, dt = 1.253224749007643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 338.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.501054998436236e-21,4.848687851306961e-22,1.83556602600558e-21)
    sum a = (-8.126632497466943e-23,-4.822231986287447e-23,6.908889534014532e-24)
    sum e = 2.398457332274467e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.253215964240791 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4657e+04 | 1536 |      1 | 6.229e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72424.79836450113 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 474.8354008915807, dt = 1.253215964240791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.4%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 333.23 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3317583350689134e-21,4.2170782072847275e-22,1.8324787081721013e-21)
    sum a = (1.1838449442137535e-22,5.397895148566134e-23,2.3713592521268003e-23)
    sum e = 2.3984574526416976e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2532074031066838 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2906e+04 | 1536 |      1 | 6.706e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67280.02815388334 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 476.0886168558215, dt = 1.2532074031066838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 360.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.609404862991323e-21,5.533851618064802e-22,1.872726718902992e-21)
    sum a = (-6.281501394509828e-23,-7.127999000014796e-23,2.8829142485421204e-23)
    sum e = 2.398457993656587e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2531992537013437 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2900e+04 | 1536 |      1 | 6.707e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67261.70108821585 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 477.34182425892817, dt = 0.6714875715068729 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 339.59 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.389319200613803e-21,4.270343004667898e-22,1.895290552322246e-21)
    sum a = (-1.2758421398492483e-22,-8.237333753722534e-23,1.0491794668011388e-22)
    sum e = 2.3984580793161097e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531952028225877 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2576e+04 | 1536 |      1 | 6.804e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35530.09829271502 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 119.28193701500001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000860305 s
sph::RenderFieldGetter compute custom field took :  0.0008676090000000001 s
rho_t_ampl=6.66099e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-3.60738e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.0367e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 489.96s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 478.01331183043504, dt = 1.2531952028225877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.37 us    (2.1%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 416.55 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2369522035832125e-21,3.200880771929421e-22,2.052319562965584e-21)
    sum a = (-1.945754327314475e-23,9.031489464511511e-24,5.317484580710096e-23)
    sum e = 2.3984592831216683e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2531875446041816 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2580e+04 | 1536 |      1 | 6.802e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66322.02847115292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 479.26650703325765, dt = 1.2531875446041816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.4%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 321.65 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.297899002395449e-21,3.886991045911653e-22,2.0865355145207005e-21)
    sum a = (-3.7397368411805104e-23,-5.606073296698302e-23,2.3594482849344116e-23)
    sum e = 2.398461061009848e-13
    sum de = 0
Info: cfl dt = 1.253180448720635 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2738e+04 | 1536 |      1 | 6.755e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66786.47233295091 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 480.51969457786186, dt = 1.253180448720635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 318.30 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2945130691281024e-21,2.7766182083389526e-22,2.097568787913365e-21)
    sum a = (4.157687978868588e-23,-6.889041768616983e-23,-4.1180030525883166e-23)
    sum e = 2.398463079452673e-13
    sum de = -9.34011311781678e-28
Info: cfl dt = 1.2531737716576314 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2759e+04 | 1536 |      1 | 6.749e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66846.45125902524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 481.7728750265825, dt = 1.2531737716576314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 346.86 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.365617667742378e-21,1.832942239180986e-22,2.0053759768736044e-21)
    sum a = (-4.165293102418293e-23,9.780261216257395e-23,6.891676329135476e-23)
    sum e = 2.398465511195268e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.253167515190631 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2057e+04 | 1536 |      1 | 6.964e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64783.052645710464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 483.02604879824014, dt = 1.253167515190631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 324.57 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2166366039791337e-21,4.1028856238981945e-22,2.16072543306017e-21)
    sum a = (-7.839559749562221e-23,-2.9806816074744677e-24,1.6463566312753437e-23)
    sum e = 2.3984683531921054e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2531616809306272 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1450e+04 | 1536 |      1 | 7.161e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62999.89996725123 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 484.27921631343077, dt = 1.2531616809306272 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 304.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.111672672691394e-21,3.4342175354484357e-22,2.1484906222339495e-21)
    sum a = (4.041296522803554e-23,-1.2441147289667178e-22,1.0115523077472915e-23)
    sum e = 2.398471602108046e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2531562703778134 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2676e+04 | 1536 |      1 | 6.774e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66601.4632590469 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 485.5323779943614, dt = 1.2531562703778134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 317.52 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2200225372464802e-21,1.1144729911386277e-22,2.157189391140998e-21)
    sum a = (1.808696774646984e-23,2.122065451357983e-22,-8.903300472144586e-23)
    sum e = 2.3984752541434556e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2531512849111688 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0770e+04 | 1536 |      1 | 4.992e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90373.80343432772 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 486.7855342647392, dt = 1.2531512849111688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 287.07 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2132506707117875e-21,5.88289785646097e-22,1.9834932672198013e-21)
    sum a = (1.10254452017969e-22,-7.72263795786582e-23,4.865183920404957e-23)
    sum e = 2.398479305058346e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531467257881204 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0865e+04 | 1536 |      1 | 4.976e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90653.10351898488 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 488.0386855496504, dt = 1.2531467257881204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 268.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.409634800217882e-21,3.101571911315977e-22,2.1307311297609387e-21)
    sum a = (5.67342216807915e-23,1.251873598991546e-22,-8.500199709034188e-23)
    sum e = 2.398483750177145e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.2531425941442276 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0656e+04 | 1536 |      1 | 5.010e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90039.00400749664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 489.2918322754385, dt = 0.6718123507574774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.4%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 306.22 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4536519326933855e-21,5.210811595633164e-22,1.989881804605954e-21)
    sum a = (1.690321373308114e-23,1.8210907534682393e-22,1.4397881495593516e-23)
    sum e = 2.3984708854690997e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.25314069792346 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0787e+04 | 1536 |      1 | 4.989e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48476.74348952332 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 414                                                     [SPH][rank=0]
Info: time since start : 120.212578991 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010761780000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009267390000000001 s
rho_t_ampl=0.000275525, rho_t_phi=3.14159 rad
eps_t_ampl=-5.42218e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.97553e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 501.91s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 489.96364462619596, dt = 1.25314069792346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.99 us    (2.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 355.61 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (76.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4536519326933855e-21,7.684018440093493e-22,2.0413134089208512e-21)
    sum a = (-9.288831772099283e-23,6.720012170148431e-23,1.3223714139287468e-23)
    sum e = 2.3984898813798244e-13
    sum de = -6.310887241768094e-28
Info: cfl dt = 1.2531370832182667 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0378e+04 | 1536 |      1 | 5.056e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89222.07851216038 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 491.2167853241194, dt = 1.2531370832182667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 284.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2877412025934093e-21,7.8061344049174075e-22,2.057148837036565e-21)
    sum a = (-1.7194192373243726e-22,-8.503515509861235e-23,-9.763787152538378e-23)
    sum e = 2.398496020681346e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.253134039805738 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0909e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90782.0388904142 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 492.4699224073377, dt = 1.253134039805738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 285.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.016866541205693e-21,5.78665171136401e-22,1.865333114603499e-21)
    sum a = (1.569962026695408e-23,2.9545208821652306e-23,1.155363320413483e-23)
    sum e = 2.398501816655309e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531314270739868 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0686e+04 | 1536 |      1 | 5.006e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90124.57435338433 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 493.72305644714345, dt = 1.2531314270739868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.7%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 287.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.135374205562819e-21,6.874928358449363e-22,1.9482271311855948e-21)
    sum a = (-1.1514818369343067e-22,6.981284739439036e-23,-8.922667864842882e-23)
    sum e = 2.3985079796557755e-13
    sum de = 8.330371159133885e-28
Info: cfl dt = 1.2531292454453837 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0561e+04 | 1536 |      1 | 5.026e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89759.02995019089 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 494.97618787421743, dt = 1.2531292454453837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 311.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9186744764526458e-21,8.002032467831412e-22,1.7732690826909133e-21)
    sum a = (1.872844338501009e-23,5.809984057335942e-24,1.1384630512813453e-22)
    sum e = 2.398514503305899e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2531274953673486 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0629e+04 | 1536 |      1 | 5.015e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89956.73265020183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 496.2293171196628, dt = 1.2531274953673486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 273.21 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.010094674671e-21,7.673763922959354e-22,2.043171365358119e-21)
    sum a = (5.667470332257643e-23,-2.4538133596284966e-23,1.707008542383513e-23)
    sum e = 2.3985213802897196e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.253126177173983 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0825e+04 | 1536 |      1 | 4.983e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90533.49510537022 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 497.48244461503015, dt = 1.253126177173983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 278.21 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1184445392260866e-21,7.176471507195126e-22,2.0039258653446704e-21)
    sum a = (1.0038763085609222e-23,7.183454008075823e-23,-6.51636664189604e-23)
    sum e = 2.3985286028519354e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2531252910764246 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0690e+04 | 1536 |      1 | 5.005e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90136.16903122423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 498.73557079220416, dt = 1.2531252910764246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 283.94 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0947430063546612e-21,8.680260692569468e-22,1.8707429933551333e-21)
    sum a = (-1.2697249752549212e-23,9.93724867619935e-23,7.301952624538907e-24)
    sum e = 2.398536162862441e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.253124837162854 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0891e+04 | 1536 |      1 | 4.972e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90727.44231480928 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 499.98869608328056, dt = 1.253124837162854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.3%)
   LB compute        : 278.18 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0642696069485432e-21,1.009824011163109e-21,1.9252975015272233e-21)
    sum a = (1.4998626270198757e-23,2.357858735656735e-24,-5.026112511189074e-23)
    sum e = 2.398544051823933e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2531248153985675 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0771e+04 | 1536 |      1 | 4.992e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90375.16287637388 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 501.2418209204434, dt = 0.6721565015133706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 8.59 us    (2.8%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 278.49 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1049008061567008e-21,9.506073779584304e-22,1.8554472983023382e-21)
    sum a = (1.4548932008129305e-25,-3.1019641070078663e-23,-5.272577107020098e-25)
    sum e = 2.39849804445787e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2531251172628142 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0925e+04 | 1536 |      1 | 4.967e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48718.22904421341 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 424                                                     [SPH][rank=0]
Info: time since start : 121.03305198700001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001088411 s
sph::RenderFieldGetter compute custom field took :  0.000902263 s
rho_t_ampl=0.00047761, rho_t_phi=3.14159 rad
eps_t_ampl=-9.33966e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.84015e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 513.86s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 501.91397742195676, dt = 1.2531251172628142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.18 us    (2.1%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 405.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.093050039720988e-21,9.00519786266921e-22,1.8715010495813584e-21)
    sum a = (9.165827165121463e-24,6.302148843189179e-23,-1.8224316221333265e-23)
    sum e = 2.3985543997772526e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531256248105982 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5040e+04 | 1536 |      1 | 6.134e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73542.91583750526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 503.16710253921957, dt = 1.2531256248105982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 302.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0811992732852755e-21,1.0384209289977241e-21,1.837575377669042e-21)
    sum a = (6.463693702157084e-23,1.1517229198674848e-22,-2.7443002846888067e-23)
    sum e = 2.398564261672526e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2531266978078492 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2586e+04 | 1536 |      1 | 6.801e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66334.80799798295 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 504.42022816403016, dt = 1.2531266978078492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 292.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2251014371474998e-21,1.2154111668082094e-21,1.7974097319148082e-21)
    sum a = (4.381873794812035e-23,-6.226142168962938e-23,-2.3979435490976349e-23)
    sum e = 2.3985732434563695e-13
    sum de = 0
Info: cfl dt = 1.2531282022008292 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2662e+04 | 1536 |      1 | 6.778e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66559.80883485572 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 505.673354861838, dt = 1.2531282022008292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 301.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2640396697219843e-21,1.026220492207498e-21,1.7695305693898832e-21)
    sum a = (-4.9175390187477055e-23,1.135886732221842e-23,4.138820522853485e-24)
    sum e = 2.398582508521758e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.253130137054529 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1775e+04 | 1536 |      1 | 7.054e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63952.29500470075 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 506.92648306403885, dt = 1.253130137054529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 284.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1387601388301654e-21,1.0865725207595155e-21,1.792334939922745e-21)
    sum a = (1.1990965235063663e-22,4.653123255236103e-23,2.6187051455487467e-23)
    sum e = 2.3985920492270777e-13
    sum de = -9.844984097158227e-28
Info: cfl dt = 1.2531325016475185 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1603e+04 | 1536 |      1 | 7.110e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63447.378424791474 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 508.1796132010934, dt = 1.2531325016475185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 344.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.413020733485229e-21,1.166914451233157e-21,1.838965436549111e-21)
    sum a = (8.259825490069774e-23,1.1118600619129247e-22,-1.72681153440873e-24)
    sum e = 2.398601855011414e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.253135295145699 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2018e+04 | 1536 |      1 | 6.976e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64666.821057610825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 509.43274570274093, dt = 1.253135295145699 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 308.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.494283131901543e-21,1.3467504105458007e-21,1.8193116235877126e-21)
    sum a = (-6.044419934286448e-24,-5.140417138992468e-23,-9.483370595060271e-23)
    sum e = 2.3986119149451423e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2531385165937061 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1715e+04 | 1536 |      1 | 7.074e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63776.94929524334 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 510.6858809978866, dt = 1.2531385165937061 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 305.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.423178533287268e-21,1.1804466112884455e-21,1.6421340861825088e-21)
    sum a = (2.950787937285135e-23,8.711573284035215e-23,-2.834645477061974e-23)
    sum e = 2.398622217824194e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2531421649152708 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1649e+04 | 1536 |      1 | 7.095e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63583.328747828644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 511.9390195144803, dt = 1.2531421649152708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 342.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4722745656637916e-21,1.3764289918765883e-21,1.6482708161416476e-21)
    sum a = (1.5130889288454477e-23,-6.118081329456069e-23,2.1805354882780232e-23)
    sum e = 2.3986327521819466e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2531462389136225 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1849e+04 | 1536 |      1 | 7.030e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64171.56155481563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 513.1921616793956, dt = 0.6721485383221761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 322.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.470581599030118e-21,1.242371743113842e-21,1.694350927215437e-21)
    sum a = (5.933318998951642e-23,4.999729053658953e-23,8.388486843536629e-23)
    sum e = 2.3985367909155674e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.2531487242355976 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8803e+04 | 1536 |      1 | 8.169e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29620.53426954725 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 434                                                     [SPH][rank=0]
Info: time since start : 122.21291978400001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000963037 s
sph::RenderFieldGetter compute custom field took :  0.001023078 s
rho_t_ampl=0.00066783, rho_t_phi=3.14159 rad
eps_t_ampl=-1.5258e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.6341e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 525.81s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 513.8643102177177, dt = 1.2531487242355976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.21 us    (2.3%)
   patch tree reduce : 1.11 us    (0.3%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 381.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (80.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.568773663783165e-21,1.3424092902934887e-21,1.82033447022498e-21)
    sum a = (-3.4732268593952323e-23,1.1968857355315426e-22,2.9102077496341387e-23)
    sum e = 2.398646273000625e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2531533261029155 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1447e+04 | 1536 |      1 | 7.162e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62990.19504003616 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 515.1174589419534, dt = 1.2531533261029155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 336.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4570378659607324e-21,1.536066735013855e-21,1.822478343148309e-21)
    sum a = (-7.802195446904979e-23,-8.391720393479764e-24,-3.357867223021856e-24)
    sum e = 2.398658854273226e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2531584730731484 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1931e+04 | 1536 |      1 | 7.004e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64412.777618086184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 516.3706122680563, dt = 1.2531584730731484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.3%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 352.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3469950347719723e-21,1.4452880124340409e-21,1.7979317595413015e-21)
    sum a = (-9.098373025811045e-23,3.345158735842051e-23,2.0945441654692492e-23)
    sum e = 2.398670117843614e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2531640410577594 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4051e+04 | 1536 |      1 | 6.386e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70641.15516445642 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 517.6237707411295, dt = 1.2531640410577594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 312.22 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.233566270315866e-21,1.5134133865621063e-21,1.839407782568909e-21)
    sum a = (3.121407230835015e-24,9.796994780711836e-23,9.438578857576233e-23)
    sum e = 2.3986815518835146e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.253170027798038 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0218e+04 | 1536 |      1 | 5.083e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88752.45929967906 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 518.8769347821873, dt = 1.253170027798038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.3%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 333.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2945130691281024e-21,1.6766081782465879e-21,2.003705624824232e-21)
    sum a = (-2.3225386005704603e-23,-2.7988826014781776e-23,3.02256315827005e-23)
    sum e = 2.398693149665852e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2531764314311655 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0647e+04 | 1536 |      1 | 5.012e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90014.88871223299 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 520.1301048099854, dt = 1.2531764314311655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.4%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 285.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.267425602989331e-21,1.5626226691480115e-21,2.001381881087606e-21)
    sum a = (5.364588020452042e-23,1.8896516227969235e-22,-1.6483000255139292e-23)
    sum e = 2.398704898436459e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.253183249985449 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0750e+04 | 1536 |      1 | 4.995e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90316.351469491 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 521.3832812414165, dt = 1.253183249985449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.3%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 318.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.365617667742378e-21,1.9353836667174303e-21,1.951458582976598e-21)
    sum a = (-2.8542359339584583e-23,6.063593389771016e-23,-4.878161158859902e-23)
    sum e = 2.3987167851794626e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531904813730144 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0859e+04 | 1536 |      1 | 4.978e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90636.90235132318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 522.636464491402, dt = 1.2531904813730144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 301.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.270811536256677e-21,1.930964841941893e-21,1.8700878923071966e-21)
    sum a = (-6.150230348891025e-23,-9.127591657329324e-24,5.872654191074914e-23)
    sum e = 2.3987287967318495e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.2531981233904979 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0355e+04 | 1536 |      1 | 5.060e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89158.26765941747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 523.889654972775, dt = 1.2531981233904979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 296.79 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1963210043750552e-21,1.875809096719597e-21,2.011047981740611e-21)
    sum a = (2.952110567467692e-23,4.18311825655343e-24,-5.923072630371274e-23)
    sum e = 2.398740919799091e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.2532061737197986 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0337e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89104.36705127865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 525.1428530961655, dt = 0.671789917313049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.34 us   (3.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 277.10 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2538818699199448e-21,1.8869497760760494e-21,1.8973454634313682e-21)
    sum a = (2.3418490012357953e-22,-1.7741020518422315e-24,5.070908821535873e-24)
    sum e = 2.398583177500771e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2532107681770617 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0456e+04 | 1536 |      1 | 5.043e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47953.610168562824 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 444                                                     [SPH][rank=0]
Info: time since start : 123.094361026 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001058885 s
sph::RenderFieldGetter compute custom field took :  0.0010324660000000001 s
rho_t_ampl=0.000841457, rho_t_phi=3.14159 rad
eps_t_ampl=-2.30255e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.36266e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 537.76s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 525.8146430134785, dt = 1.2532107681770617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.66 us    (2.2%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 370.06 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.616176729526016e-21,1.882723972642779e-21,1.925298976042913e-21)
    sum a = (7.353823815018085e-23,-1.4091460028312744e-22,4.0040133599042846e-23)
    sum e = 2.398756257274224e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.253219331276015 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0872e+04 | 1536 |      1 | 4.975e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90677.10900897495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 527.0678537816556, dt = 1.253219331276015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 742.00 ns  (0.3%)
   LB compute        : 276.60 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.589089263387244e-21,1.618946048828346e-21,1.997389950019142e-21)
    sum a = (4.3117743951365035e-23,-1.0953922424717874e-23,-3.8149612750362116e-23)
    sum e = 2.398770290362144e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2532284052619593 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1626e+04 | 1536 |      1 | 4.857e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92892.65361036202 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 528.3210731129316, dt = 1.2532284052619593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (0.9%)
   patch tree reduce : 601.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 305.20 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6568079287341736e-21,1.686646734671231e-21,1.9005853208543704e-21)
    sum a = (-1.2480338402609831e-22,1.5693375876702543e-22,-7.347324467957311e-23)
    sum e = 2.398782709766656e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2532378791450738 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1590e+04 | 1536 |      1 | 4.862e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92786.92489332936 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 529.5743015181936, dt = 1.2532378791450738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (0.9%)
   patch tree reduce : 430.00 ns  (0.1%)
   gen split merge   : 490.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 380.00 ns  (0.1%)
   LB compute        : 299.60 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 1.97 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3859332673464568e-21,1.988527774096443e-21,1.786371578062752e-21)
    sum a = (-8.623548790273007e-24,-1.5062203578949658e-23,-1.1459537332327626e-22)
    sum e = 2.398795168985597e-13
    sum de = -5.806016262426647e-28
Info: cfl dt = 1.2532477494134329 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1108e+04 | 1536 |      1 | 4.938e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91373.40711276392 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 530.8275393973387, dt = 1.2532477494134329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.3%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 307.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.426564466554614e-21,1.861867334629648e-21,1.6169872797086874e-21)
    sum a = (9.79275387165358e-23,6.004314629113427e-23,-1.335315096425707e-23)
    sum e = 2.3988076642853177e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2532580131220596 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1030e+04 | 1536 |      1 | 4.950e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91145.0238759575 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 532.0807871467521, dt = 1.2532580131220596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.7%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 263.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.628027495961728e-21,1.984192233690214e-21,1.663693129920683e-21)
    sum a = (3.727171854446217e-23,9.263813524715453e-24,2.632536512242765e-23)
    sum e = 2.398820181981373e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2532686672238973 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0580e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89822.33732762316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 533.3340451598741, dt = 1.2532686672238973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.6%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 288.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.629720462595401e-21,1.9639694248598802e-21,1.7215495942991235e-21)
    sum a = (4.4651994963131396e-23,-1.0315614511297471e-23,2.436120126605941e-23)
    sum e = 2.3988327082624576e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2532797085639888 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0980e+04 | 1536 |      1 | 4.958e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90997.6018314299 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 534.587313827098, dt = 1.2532797085639888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.5%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 285.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7160617609127365e-21,1.938771666594437e-21,1.7508501810128174e-21)
    sum a = (-3.600199356920725e-23,-1.4887122991795722e-23,-6.812566797224671e-23)
    sum e = 2.398845229307737e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.2532911338804715 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0835e+04 | 1536 |      1 | 4.981e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90573.21629838325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 535.840593535662, dt = 1.2532911338804715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 281.65 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.594168163288264e-21,1.917249580270707e-21,1.6075129270909712e-21)
    sum a = (-6.457080551244297e-23,1.603656902447003e-22,-4.845260131213046e-23)
    sum e = 2.398857731311072e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2533029398056352 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0850e+04 | 1536 |      1 | 4.979e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90618.9859106773 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 537.0938846695425, dt = 0.671091139696955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 311.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.533221364476028e-21,2.13468646904669e-21,1.5873248556659189e-21)
    sum a = (-8.025719947757148e-23,-5.127358345567092e-23,-4.423619732599383e-23)
    sum e = 2.3986324888687027e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2533095121530187 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0912e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48621.282049926165 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 454                                                     [SPH][rank=0]
Info: time since start : 123.90629201200001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001031865 s
sph::RenderFieldGetter compute custom field took :  0.0009952770000000001 s
rho_t_ampl=0.000994188, rho_t_phi=3.14159 rad
eps_t_ampl=-3.24448e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.03274e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 549.72s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 537.7649758092394, dt = 1.2533095121530187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.18 us    (2.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 340.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.431643366455634e-21,1.999421700259462e-21,1.5332980044539559e-21)
    sum a = (1.0501683649504245e-23,-6.106518325499235e-24,-3.226717230176115e-23)
    sum e = 2.398873354226285e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2533218026576862 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0580e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89828.49983476114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 539.0182853213925, dt = 1.2533218026576862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 274.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.514598731505622e-21,2.02006795740918e-21,1.5003573003551287e-21)
    sum a = (4.684756106617637e-23,1.2260154382528793e-22,-5.387367664630598e-23)
    sum e = 2.398887432842573e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.2533345569775454 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0216e+04 | 1536 |      1 | 5.083e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88760.06846013103 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 540.2716071240501, dt = 1.2533345569775454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 270.52 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.60263299645663e-21,2.254383260602321e-21,1.419295608215659e-21)
    sum a = (8.491285772017286e-24,1.5145180217162835e-22,4.65355427381742e-23)
    sum e = 2.398899772056193e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2533476799999173 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0764e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90368.83658386431 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 541.5249416810276, dt = 1.2533476799999173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 303.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5907822300209175e-21,2.462277992594052e-21,1.5405439949909848e-21)
    sum a = (-1.325275442922324e-23,8.609272715321582e-23,-2.2487410939119347e-23)
    sum e = 2.3989120155198014e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.253361167064313 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0595e+04 | 1536 |      1 | 5.020e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89874.99547093973 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 542.7782893610275, dt = 1.253361167064313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 280.30 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.548458064179087e-21,2.5292206460135585e-21,1.4691042679431338e-21)
    sum a = (-1.8516822555800934e-23,8.302635309181763e-23,2.2829203336247423e-23)
    sum e = 2.398924164272447e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2533750142322404 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0747e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90322.25535251123 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 544.0316505280919, dt = 1.2533750142322404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 305.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.504440931703582e-21,2.631357661947049e-21,1.5261168632772978e-21)
    sum a = (-5.496851038707763e-23,5.61068119042513e-23,-3.777355337817707e-23)
    sum e = 2.398936205050182e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.2533892174726433 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9807e+04 | 1536 |      1 | 5.153e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87559.688829503 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 545.2850255423241, dt = 1.2533892174726433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 321.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.431643366455634e-21,2.684792334644292e-21,1.4407929082376179e-21)
    sum a = (-1.2697249752549213e-22,1.6757495148490663e-23,1.1554508378363273e-22)
    sum e = 2.398948124608425e-13
    sum de = -6.310887241768094e-28
Info: cfl dt = 1.2534037726576928 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0815e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90522.21471785694 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 546.5384147597968, dt = 1.2534037726576928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.3%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 356.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.231873303682193e-21,2.68114104869657e-21,1.6817015154923112e-21)
    sum a = (4.4704900170433686e-24,-1.648650772771336e-23,6.044333075922678e-23)
    sum e = 2.398959909837201e-13
    sum de = -8.835242138475332e-28
Info: cfl dt = 1.253418675564034 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0834e+04 | 1536 |      1 | 4.981e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90580.4511866997 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 547.7918185324545, dt = 1.253418675564034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.9%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 272.23 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3165216353658542e-21,2.639644353362702e-21,1.7229299425187557e-21)
    sum a = (-3.161086136311731e-23,9.432008749715417e-23,1.9226415240017797e-23)
    sum e = 2.39897154777782e-13
    sum de = 0
Info: cfl dt = 1.2534339218741342 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0810e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90510.09924303289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 549.0452372080185, dt = 0.6700713969818253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.3%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 325.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.262346703088311e-21,2.7722930009810245e-21,1.7099819876071494e-21)
    sum a = (-2.2987312572844303e-23,-1.7183127293051906e-22,-1.0467452606483438e-22)
    sum e = 2.398679735054727e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2534422886155803 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0605e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48064.39155438765 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 464                                                     [SPH][rank=0]
Info: time since start : 124.72562793300001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010829000000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009885640000000002 s
rho_t_ampl=0.00112225, rho_t_phi=3.14159 rad
eps_t_ampl=-4.32774e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.65269e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 561.67s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 549.7153086050004, dt = 1.2534422886155803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.94 us    (2.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 372.24 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2454170367515786e-21,2.4677431418405713e-21,1.5372672716829542e-21)
    sum a = (-5.790474939235463e-23,6.307179665353899e-24,3.0048632150936734e-23)
    sum e = 2.3989859041938585e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.2534579791648852 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0733e+04 | 1536 |      1 | 4.998e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90284.82725126045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 550.968750893616, dt = 1.2534579791648852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 274.16 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1556898051668976e-21,2.5873027105147624e-21,1.6593658212971977e-21)
    sum a = (-7.47550579181335e-23,4.4901502559752524e-23,-8.45670701933716e-23)
    sum e = 2.398998622141877e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.253473802967066 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1035e+04 | 1536 |      1 | 4.949e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91175.31754968286 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 552.2222088727808, dt = 1.253473802967066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 280.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.045646973978138e-21,2.6677678109241547e-21,1.4815302308956445e-21)
    sum a = (-1.19248337259358e-22,6.728844242275231e-23,-2.4041975101426485e-23)
    sum e = 2.3990096571753777e-13
    sum de = -1.6408306828597046e-28
Info: cfl dt = 1.2534897533503704 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1046e+04 | 1536 |      1 | 4.948e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91206.93106883812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 553.4756826757479, dt = 1.2534897533503704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.5%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 285.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.869578444076122e-21,2.7661524836975368e-21,1.4893271720156497e-21)
    sum a = (-4.883150634001218e-23,1.0310644315064581e-22,-7.606739916870177e-23)
    sum e = 2.3990204692061594e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2535060269065799 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1021e+04 | 1536 |      1 | 4.952e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91134.62469027199 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 554.7291724290982, dt = 1.2535060269065799 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.9%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 294.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8458769112046967e-21,2.9178418394205327e-21,1.3613695607155068e-21)
    sum a = (7.406729022320374e-25,-1.7810923590180125e-23,-2.1424144669292044e-23)
    sum e = 2.399031065490989e-13
    sum de = 0
Info: cfl dt = 1.2535226189550923 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0417e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89362.76328755656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 555.9826784560048, dt = 1.2535226189550923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 305.46 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8661925108087755e-21,2.819731819070997e-21,1.3687617352031293e-21)
    sum a = (-3.5234868063324065e-23,-1.2519964351214003e-22,-2.792819253732314e-23)
    sum e = 2.399041434497059e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.2535395247341086 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0287e+04 | 1536 |      1 | 5.072e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88980.54475945345 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 557.2362010749599, dt = 1.2535395247341086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 278.18 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8128640618480687e-21,2.5954757383991016e-21,1.3296761564446484e-21)
    sum a = (6.129068265970109e-23,-1.2682806088470651e-23,-4.9803712690217e-23)
    sum e = 2.399051564850789e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.253556739398078 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0830e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90577.38278320854 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 558.4897405996941, dt = 1.253556739398078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 275.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9567662257102934e-21,2.6501090446992875e-21,1.2535334621868299e-21)
    sum a = (-5.5285941630891365e-24,-4.6024491790974814e-23,2.908968623780646e-23)
    sum e = 2.39906144544334e-13
    sum de = -3.660314600225495e-28
Info: cfl dt = 1.2535742580191298 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0866e+04 | 1536 |      1 | 4.976e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90683.84638107191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 559.7432973390921, dt = 1.2535742580191298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 285.90 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8932799769475474e-21,2.57151670596401e-21,1.3394482199885593e-21)
    sum a = (2.026269439677645e-23,-5.897290565695094e-23,-2.973072739412954e-23)
    sum e = 2.3990710654450874e-13
    sum de = -1.135959703518257e-28
Info: cfl dt = 1.2535920755885914 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0970e+04 | 1536 |      1 | 4.960e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90991.58497400809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 560.9968715971113, dt = 0.6687698036498659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.5%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 269.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.930525242888358e-21,2.52396443100369e-21,1.2826973290793112e-21)
    sum a = (1.0051989387434794e-23,-6.397358115325273e-23,-8.859542307012331e-23)
    sum e = 2.3987201745366603e-13
    sum de = -2.145701662201152e-28
Info: cfl dt = 1.2536017570919686 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9395e+04 | 1536 |      1 | 5.225e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46074.84018751354 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 474                                                     [SPH][rank=0]
Info: time since start : 125.54062121300001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009254160000000001 s
sph::RenderFieldGetter compute custom field took :  0.000843884 s
rho_t_ampl=0.00122248, rho_t_phi=3.14159 rad
eps_t_ampl=-5.52501e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.23211e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 573.62s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 561.6656414007612, dt = 1.2536017570919686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.84 us    (2.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 343.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9322182095220315e-21,2.442095895974025e-21,1.1519504855637242e-21)
    sum a = (-8.033655728852491e-23,-1.1053395774543962e-22,4.794136515932502e-23)
    sum e = 2.399082737634673e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.2536199705098732 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3906e+04 | 1536 |      1 | 6.425e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70238.78385067866 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 562.9192431578531, dt = 1.2536199705098732 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 305.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.768846929372565e-21,2.2743425767009736e-21,1.2976321171569947e-21)
    sum a = (-8.089206196519894e-23,3.814068915766433e-23,-3.061279348777943e-23)
    sum e = 2.399092826769919e-13
    sum de = 1.6408306828597046e-28
Info: cfl dt = 1.2536385214965378 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4245e+04 | 1536 |      1 | 6.335e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71235.411781107 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 564.1728631283629, dt = 1.2536385214965378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.3%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 341.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.683352114372067e-21,2.4153510737169218e-21,1.2100162089667411e-21)
    sum a = (-1.0573105679362334e-22,3.633090095479053e-23,-5.1533903373286444e-23)
    sum e = 2.3991014667144074e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2536573541336429 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4121e+04 | 1536 |      1 | 6.368e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70871.95071207064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 565.4265016498595, dt = 1.2536573541336429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 333.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.531831600658313e-21,2.4597596220620764e-21,1.1322965973831893e-21)
    sum a = (-6.745413931041769e-24,4.404871608345216e-23,-6.61234838431954e-23)
    sum e = 2.399109777692712e-13
    sum de = 1.6408306828597046e-28
Info: cfl dt = 1.253676462043453 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4271e+04 | 1536 |      1 | 6.328e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71315.72653943513 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 566.6801590039931, dt = 1.253676462043453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 294.72 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.592778399470549e-21,2.5198229452445575e-21,1.0402539746757723e-21)
    sum a = (2.2035018841403112e-23,2.454755443016585e-23,-1.8613332759034248e-23)
    sum e = 2.3991177736142667e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.2536958397958344 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4789e+04 | 1536 |      1 | 6.196e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72836.28348515426 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 567.9338354660366, dt = 1.2536958397958344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 311.41 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6291771820945237e-21,2.538386266517714e-21,1.0466996958921664e-21)
    sum a = (9.922371629544187e-23,4.7136192166928014e-23,-1.8041445079988932e-24)
    sum e = 2.3991254458035407e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2537154818927583 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6871e+04 | 1536 |      1 | 5.716e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78956.97041927365 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 569.1875313058324, dt = 1.2537154818927583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 334.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8010132954123564e-21,2.611648818939218e-21,1.054974616681252e-21)
    sum a = (-2.8542359339584583e-23,8.478341045757922e-23,4.355344202703258e-23)
    sum e = 2.399132785879815e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2537353827675017 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4201e+04 | 1536 |      1 | 6.347e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71111.44865680474 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 570.4412467877252, dt = 1.2537353827675017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 299.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.68758453095625e-21,2.741538336000147e-21,1.1380118622219978e-21)
    sum a = (1.129526175903857e-23,-4.985826582985169e-23,-4.324556653859269e-23)
    sum e = 2.3991397858273063e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2537555367862385 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4031e+04 | 1536 |      1 | 6.392e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70615.12219410753 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 571.6949821704926, dt = 1.2537555367862385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 305.00 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.724829796897061e-21,2.5946333883015856e-21,1.0293809996187658e-21)
    sum a = (-9.24783023644001e-23,-6.446825000805328e-23,-4.575398336084573e-23)
    sum e = 2.3991464380059003e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2537759382497258 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4319e+04 | 1536 |      1 | 6.316e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71461.06238611792 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 572.9487377072788, dt = 0.667236489243237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 298.68 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6029361992725887e-21,2.542457487548398e-21,9.972798016524485e-22)
    sum a = (3.097599887548985e-23,3.295846846086515e-23,6.5643421149224365e-24)
    sum e = 2.398749799579331e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.253786928633913 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5227e+04 | 1536 |      1 | 6.089e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39451.2983933967 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 484                                                     [SPH][rank=0]
Info: time since start : 126.479235841 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010314340000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008980660000000001 s
rho_t_ampl=0.00129245, rho_t_phi=3.14159 rad
eps_t_ampl=-6.80618e-06, eps_t_phi=6.28319 rad
vx_t_ampl=7.81576e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 585.57s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 573.6159741965221, dt = 1.253786928633913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.70 us    (2.2%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 374.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6816591477383936e-21,2.6162935241506204e-21,1.0229644358980274e-21)
    sum a = (1.1110093533480561e-23,1.0130314216465863e-22,1.1505622321224766e-23)
    sum e = 2.399154285043907e-13
    sum de = -5.679798517591285e-29
Info: cfl dt = 1.253807666900291 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0722e+04 | 1536 |      1 | 5.000e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90278.5432170886 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 574.869761125156, dt = 1.253807666900291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 294.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.680812664421557e-21,2.7861489987700736e-21,1.0404879296434793e-21)
    sum a = (-2.3992511511587783e-23,-8.663417242604499e-23,5.199929100134892e-25)
    sum e = 2.3991607412757256e-13
    sum de = -8.204153414298523e-29
Info: cfl dt = 1.253828667949284 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0206e+04 | 1536 |      1 | 5.085e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88764.59643574763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 576.1235687920563, dt = 1.253828667949284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 287.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6304469070697785e-21,2.5597030351716986e-21,1.03425297847052e-21)
    sum a = (7.425245844876175e-23,2.4658143879609744e-23,7.716131025958796e-23)
    sum e = 2.399166135864215e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.2538498969022311 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1206e+04 | 1536 |      1 | 4.922e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91704.50464282797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 577.3773974600056, dt = 1.2538498969022311 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 283.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.784083629075624e-21,2.6603826779727837e-21,1.1790492198054885e-21)
    sum a = (8.538900458589345e-23,8.523851019554126e-24,-8.785898149098657e-23)
    sum e = 2.3991711268009995e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.2538713466973248 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0916e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90854.19850625402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 578.6312473569078, dt = 1.2538713466973248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 278.09 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9008983267990766e-21,2.6609621553215166e-21,9.654300224647641e-22)
    sum a = (5.491560517977535e-23,-6.975948759350802e-23,-1.129180299082433e-23)
    sum e = 2.3991757348178977e-13
    sum de = 3.155443620884047e-29
Info: cfl dt = 1.2538930113033666 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1290e+04 | 1536 |      1 | 4.909e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91953.43147670232 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 579.8851187036051, dt = 1.2538930113033666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 315.94 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9432224926409073e-21,2.524413298621895e-21,9.992740052189668e-22)
    sum a = (-3.9837621098623155e-23,1.0589352460369458e-22,-4.9400569807532816e-23)
    sum e = 2.3991799549542516e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.2539148846361743 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0873e+04 | 1536 |      1 | 4.975e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90730.82252772023 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 581.1390117149085, dt = 1.2539148846361743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.5%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 289.92 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8441839445710236e-21,2.7673214614518546e-21,9.134377372373857e-22)
    sum a = (-1.2501500485530745e-22,1.5451982306259955e-23,1.4134032666225518e-23)
    sum e = 2.399183782640426e-13
    sum de = -3.155443620884047e-29
Info: cfl dt = 1.2539369605593687 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1528e+04 | 1536 |      1 | 4.872e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92656.68856561402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 582.3929265995447, dt = 1.2539369605593687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 296.07 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6317166320450333e-21,2.729995597734294e-21,9.709944150650213e-22)
    sum a = (4.409649028645737e-23,-1.418349923424774e-22,2.4274071639085808e-23)
    sum e = 2.3991872137397777e-13
    sum de = 4.733165431326071e-29
Info: cfl dt = 1.2539592328840126 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1558e+04 | 1536 |      1 | 4.867e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92744.96445406553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 583.6468635601041, dt = 1.2539592328840126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 277.23 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7946646705360816e-21,2.453524764047598e-21,1.0077905961413019e-21)
    sum a = (-9.120857738914518e-23,1.2215955737143568e-23,-8.873134643647701e-23)
    sum e = 2.3991902445540753e-13
    sum de = 7.888609052210118e-29
Info: cfl dt = 1.2539813255478782 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1314e+04 | 1536 |      1 | 4.905e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92030.31102038348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 584.900822792988, dt = 0.6654841992948377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 304.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.643567398480746e-21,2.558239255549347e-21,8.778891934247697e-22)
    sum a = (1.7405813202452877e-23,-3.292052034097888e-23,1.962194056961705e-23)
    sum e = 2.3987657130562804e-13
    sum de = 3.155443620884047e-29
Info: cfl dt = 1.2539929046150309 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1746e+04 | 1536 |      1 | 4.838e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49514.40131685673 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 494                                                     [SPH][rank=0]
Info: time since start : 127.28998246900001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001020304 s
sph::RenderFieldGetter compute custom field took :  0.0009131940000000001 s
rho_t_ampl=0.00133046, rho_t_phi=3.14159 rad
eps_t_ampl=-8.13909e-06, eps_t_phi=6.28319 rad
vx_t_ampl=3.12403e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 597.52s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 585.5663069922829, dt = 1.2539929046150309 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.25 us    (2.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 372.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7064187847558646e-21,2.5019370586180296e-21,9.385486678960017e-22)
    sum a = (3.6240067002067544e-24,-4.3849779071032766e-23,-6.746974943675213e-25)
    sum e = 2.399193511605334e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.2540148301323006 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7454e+04 | 1536 |      1 | 5.595e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80688.93657360619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 586.820299896898, dt = 1.2540148301323006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 313.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6992236765627532e-21,2.4401004810165745e-21,9.249766671722981e-22)
    sum a = (1.3638962442529947e-22,4.447944597281126e-24,-4.628620499906783e-23)
    sum e = 2.3991956915836606e-13
    sum de = -4.5753932502818685e-29
Info: cfl dt = 1.2540369388484645 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5108e+04 | 1536 |      1 | 6.118e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73795.07698103834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 588.0743147270302, dt = 1.2540369388484645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 302.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9554965007350382e-21,2.475961015154538e-21,8.383333029266184e-22)
    sum a = (5.35136171862647e-23,-5.900205454039319e-23,-2.004580997234234e-23)
    sum e = 2.3991973133987723e-13
    sum de = 1.4199496293978212e-29
Info: cfl dt = 1.2540592178745322 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5060e+04 | 1536 |      1 | 6.129e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73656.04205838544 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 589.3283516658787, dt = 1.2540592178745322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 328.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.969569285877447e-21,2.3621839236401975e-21,8.2964788247774845e-22)
    sum a = (-5.869832750188896e-23,-6.405286146634391e-23,-1.0109413612481876e-22)
    sum e = 2.3991984956066e-13
    sum de = 3.1554436208840472e-30
Info: cfl dt = 1.2540816599146996 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4659e+04 | 1536 |      1 | 6.229e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72478.76249462027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 590.5824108837533, dt = 1.2540816599146996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 296.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8249793543202928e-21,2.278681837004591e-21,6.52047880186233e-22)
    sum a = (-1.3596638276688116e-23,3.938622834173919e-23,-1.0513019164765557e-22)
    sum e = 2.3991992651303674e-13
    sum de = 7.888609052210118e-30
Info: cfl dt = 1.2541042587181805 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4847e+04 | 1536 |      1 | 6.182e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73031.4797640627 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 591.836492543668, dt = 1.2541042587181805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 347.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8363076818338953e-21,2.3929445817890898e-21,5.176728875162694e-22)
    sum a = (-7.073426216315957e-23,2.701113397352392e-23,8.617482248798447e-23)
    sum e = 2.3991996211928697e-13
    sum de = 1.2818989709841442e-30
Info: cfl dt = 1.2541144700783426 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5008e+04 | 1536 |      1 | 6.142e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73505.63713534993 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 593.0905968023861, dt = 1.2541144700783426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 302.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7126086940102325e-21,2.4190585714474025e-21,7.457041958257555e-22)
    sum a = (-9.980567357576704e-23,6.502562109157672e-23,-1.3049285241967251e-23)
    sum e = 2.3991995514864736e-13
    sum de = 1.1832913578315177e-30
Info: cfl dt = 1.2541044547250755 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4753e+04 | 1536 |      1 | 6.205e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72756.86865966849 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 594.3447112724645, dt = 1.2541044547250755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 299.07 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5689710561845196e-21,2.524444711088731e-21,6.671198344304263e-22)
    sum a = (2.200856623775197e-23,-1.9722518151441778e-23,4.176926426639884e-23)
    sum e = 2.3991990485415276e-13
    sum de = -1.5777218104420236e-30
Info: cfl dt = 1.254082011884168 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4992e+04 | 1536 |      1 | 6.146e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73459.80442143013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 595.5988157271895, dt = 1.254082011884168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 313.81 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6711839166925407e-21,2.4465649393643062e-21,7.538760109665757e-22)
    sum a = (-2.7669423419096827e-23,-5.17569473098144e-24,-2.2844681940703365e-23)
    sum e = 2.3991981204659864e-13
    sum de = 1.4199496293978212e-29
Info: cfl dt = 1.2540597438158008 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4967e+04 | 1536 |      1 | 6.152e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73384.52396151824 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 596.8528977390737, dt = 0.6637420489701071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 322.59 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6217704530722032e-21,2.4522526624712343e-21,6.981974411395765e-22)
    sum a = (-9.171117685851691e-23,-2.8505373484821377e-23,2.932398922571123e-23)
    sum e = 2.3987665300365544e-13
    sum de = -1.4199496293978212e-29
Info: cfl dt = 1.2540480404231495 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4737e+04 | 1536 |      1 | 6.209e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38482.586405632566 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 504                                                     [SPH][rank=0]
Info: time since start : 128.217744073 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009840860000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009177930000000001 s
rho_t_ampl=0.00133562, rho_t_phi=3.14159 rad
eps_t_ampl=-9.49036e-06, eps_t_phi=6.28319 rad
vx_t_ampl=-1.63652e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 609.47s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 597.5166397880438, dt = 1.2540480404231495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.02 us    (2.2%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 396.29 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4846401557446716e-21,2.408763755424889e-21,7.522844027114719e-22)
    sum a = (4.8857958943663323e-23,8.326617668473395e-23,5.517518439515674e-24)
    sum e = 2.399196447131469e-13
    sum de = 3.1554436208840472e-30
Info: cfl dt = 1.2540260386172035 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4401e+04 | 1536 |      1 | 6.295e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71717.97389112909 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 598.770687828467, dt = 1.2540260386172035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 312.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6344677028247524e-21,2.583262385298499e-21,7.44276285483741e-22)
    sum a = (6.681927682279023e-23,-3.37489498849867e-23,1.299528626848461e-23)
    sum e = 2.3991940910850533e-13
    sum de = -3.470987982972452e-29
Info: cfl dt = 1.2540038335411439 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4563e+04 | 1536 |      1 | 6.253e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72193.59794412325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 600.0247138670842, dt = 1.2540038335411439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 301.46 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7292738343104534e-21,2.4675741448356047e-21,7.652610820665539e-22)
    sum a = (8.271729161712789e-23,-5.851321094157246e-24,-3.968465727479087e-23)
    sum e = 2.399191746823792e-13
    sum de = -3.470987982972452e-29
Info: cfl dt = 1.2539814246543834 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4849e+04 | 1536 |      1 | 6.181e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73033.86005885656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 601.2787177006253, dt = 1.2539814246543834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 306.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8441839445710236e-21,2.477726829778735e-21,6.824668334232036e-22)
    sum a = (7.594542508243498e-23,2.409897097078878e-23,-9.405761541117742e-24)
    sum e = 2.399188969663305e-13
    sum de = -8.204153414298523e-29
Info: cfl dt = 1.2539592186868214 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4964e+04 | 1536 |      1 | 6.153e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73369.71376019405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 602.5326991252797, dt = 1.2539592186868214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.7%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 297.24 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9389900760567242e-21,2.5267233032348764e-21,6.896569784344819e-22)
    sum a = (1.0615429845204165e-22,-6.310216289923422e-23,-6.090210582485582e-23)
    sum e = 2.3991857919581124e-13
    sum de = -4.417621069237666e-29
Info: cfl dt = 1.2539372215993876 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4812e+04 | 1536 |      1 | 6.191e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72920.35215279702 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 603.7866583439666, dt = 1.2539372215993876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.2%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 342.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0875478981615503e-21,2.3929253623192494e-21,5.810024032452892e-22)
    sum a = (9.522937314411909e-24,-1.5937177047399314e-23,6.174895731136047e-23)
    sum e = 2.3991822173421156e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.2539154392920984 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4305e+04 | 1536 |      1 | 6.320e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71429.03252863832 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 605.0405955655659, dt = 1.2539154392920984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 295.29 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.03506593251768e-21,2.402513191176993e-21,7.353287408457308e-22)
    sum a = (-2.822492809577085e-23,-1.212348948569675e-22,9.481674211201466e-23)
    sum e = 2.3991782499218173e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2538938775893576 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4345e+04 | 1536 |      1 | 6.309e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71547.19095812837 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 606.294511004858, dt = 1.2538938775893576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 299.67 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9736958920470257e-21,2.184480860492652e-21,8.749509762254385e-22)
    sum a = (7.47021527108312e-23,3.62539649520327e-23,-8.391922200009538e-23)
    sum e = 2.399173894234363e-13
    sum de = 6.310887241768095e-30
Info: cfl dt = 1.2538725422541541 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4221e+04 | 1536 |      1 | 6.342e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71180.46624220982 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 607.5484048824474, dt = 1.2538725422541541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 324.92 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1404531054638384e-21,2.32867506213249e-21,6.576690024396142e-22)
    sum a = (-8.448961606175456e-23,-3.8962340867802056e-24,-2.4388106609143168e-23)
    sum e = 2.399169155238805e-13
    sum de = -3.155443620884047e-29
Info: cfl dt = 1.2538514389765651 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0502e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89637.65386794705 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 608.8022774247015, dt = 0.6646951591030756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.3%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 340.00 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9787747919480453e-21,2.3009137004161328e-21,6.787805615359275e-22)
    sum a = (8.76374758962407e-23,-7.923990441416037e-23,3.908468001831546e-23)
    sum e = 2.398753573866852e-13
    sum de = 1.072850831100576e-28
Info: cfl dt = 1.2538403796979394 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1205e+04 | 1536 |      1 | 4.922e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48613.259412662344 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 514                                                     [SPH][rank=0]
Info: time since start : 129.320689682 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010486970000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009164790000000001 s
rho_t_ampl=0.00130787, rho_t_phi=3.14159 rad
eps_t_ampl=-1.08262e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-6.34686e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 621.42s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 609.4669725838046, dt = 1.2538403796979394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 346.94 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.154420080191643e-21,2.1765195826006254e-21,7.48881538573509e-22)
    sum a = (-6.877676949297491e-25,-5.755670649294852e-23,-2.3688197021281618e-23)
    sum e = 2.3991627916783986e-13
    sum de = 1.8932661725304283e-29
Info: cfl dt = 1.2538196074102763 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0947e+04 | 1536 |      1 | 4.963e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90942.98482137478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 610.7208129635026, dt = 1.2538196074102763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 273.94 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.090510589770478e-21,2.117948028685082e-21,6.7982722869307285e-22)
    sum a = (-2.7113918742422795e-23,5.097022453201242e-23,-2.757164399332712e-23)
    sum e = 2.3991561845718265e-13
    sum de = 3.155443620884047e-29
Info: cfl dt = 1.2537991173055636 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0670e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90129.33028923358 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 611.9746325709128, dt = 1.2537991173055636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 268.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0380286241266083e-21,2.249891135765397e-21,6.428233548126643e-22)
    sum a = (9.118212478549403e-23,-1.1500098619130208e-22,4.4705670233085574e-23)
    sum e = 2.39915016585385e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253778847377863 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1137e+04 | 1536 |      1 | 4.933e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91499.43303994917 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 613.2284316882184, dt = 1.253778847377863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 284.23 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2352592369495394e-21,2.0016577670682312e-21,7.44184994897788e-22)
    sum a = (-8.530964677494002e-23,-1.1531100670203728e-24,-5.3577752158097416e-24)
    sum e = 2.399143763707454e-13
    sum de = 1.6408306828597046e-28
Info: cfl dt = 1.2537587582343726 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0670e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90125.94860066399 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 614.4822105355962, dt = 1.2537587582343726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 265.35 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0084017080373268e-21,2.0715820942293036e-21,7.060833928311135e-22)
    sum a = (8.44631634581034e-23,4.158561121450042e-23,-3.68318284401063e-23)
    sum e = 2.3991370130788927e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2537389319450951 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0845e+04 | 1536 |      1 | 4.980e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90637.53131965679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 615.7359692938306, dt = 1.2537389319450951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 307.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2284873704148463e-21,2.1505121525029187e-21,6.401754606373791e-22)
    sum a = (1.5316057514012488e-23,-4.563228479731373e-23,-5.038202800967948e-23)
    sum e = 2.3991299215353177e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2537193737458427 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0801e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90507.07016156266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 616.9897082257758, dt = 1.2537193737458427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 285.27 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.201399904276075e-21,2.0386268871368086e-21,5.685163296651197e-22)
    sum a = (-7.40408376195526e-23,5.923870072095688e-23,-5.758228683220869e-23)
    sum e = 2.399122497021187e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2537000887918583 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0864e+04 | 1536 |      1 | 4.977e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90689.53024599423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 618.2434275995216, dt = 1.2537000887918583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.8%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 261.45 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.054111807146504e-21,2.17863418927023e-21,4.9181185955974755e-22)
    sum a = (-7.671255058831816e-24,-2.8064203987600436e-23,7.552678489872284e-24)
    sum e = 2.399114747842324e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.253681082156782 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0926e+04 | 1536 |      1 | 4.967e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90871.61864290503 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 619.4971276883135, dt = 1.253681082156782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 279.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.082045756602112e-21,2.0887241660611e-21,5.4211036560606395e-22)
    sum a = (7.155429287634504e-23,1.3333656385082188e-22,-2.0841416795205825e-23)
    sum e = 2.39910668265517e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2536623588314348 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1014e+04 | 1536 |      1 | 4.953e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91128.17850620914 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 620.7508087704703, dt = 0.6664966090952475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 281.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1760054047709764e-21,2.278765870519901e-21,5.104210619312922e-22)
    sum a = (5.475688955786847e-23,5.8785938835173e-23,-1.8724799674384613e-23)
    sum e = 2.398727198681035e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2536525745784068 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0677e+04 | 1536 |      1 | 5.007e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47921.33975324021 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 524                                                     [SPH][rank=0]
Info: time since start : 130.135305087 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010834920000000001 s
sph::RenderFieldGetter compute custom field took :  0.000982793 s
rho_t_ampl=0.00124797, rho_t_phi=3.14159 rad
eps_t_ampl=-1.21133e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.08894e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 633.37s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 621.4173053795655, dt = 1.2536525745784068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.74 us    (2.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 348.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2437240701179055e-21,2.327619360420174e-21,4.876520276778656e-22)
    sum a = (1.798777048277805e-23,4.9443765284480703e-23,-2.029115851066808e-23)
    sum e = 2.399096265124632e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2536342390931874 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9334e+04 | 1536 |      1 | 5.236e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86191.48246398926 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 622.6709579541439, dt = 1.2536342390931874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 288.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.237798686900049e-21,2.3837471096635458e-21,4.612325017242665e-22)
    sum a = (1.6929666336732283e-24,7.968439340314808e-23,-1.9529930381160104e-23)
    sum e = 2.399086072627175e-13
    sum de = 1.6408306828597046e-28
Info: cfl dt = 1.2536162558045636 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9447e+04 | 1536 |      1 | 5.216e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86521.5298276268 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 623.9245921932371, dt = 1.2536162558045636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 312.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.231873303682193e-21,2.5025961521039233e-21,4.372266143470682e-22)
    sum a = (9.813915954574495e-23,5.2395910725986414e-23,-5.928028779698821e-23)
    sum e = 2.3990769909083477e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.253598571727316 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0082e+04 | 1536 |      1 | 5.106e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88386.72216544874 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 625.1782084490417, dt = 1.253598571727316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 280.36 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.419792600019921e-21,2.5511762037135253e-21,3.379970831179752e-22)
    sum a = (-7.269175483334424e-23,-5.146336926218854e-23,7.209715388835183e-23)
    sum e = 2.399067611174746e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.253581192512875 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0177e+04 | 1536 |      1 | 5.090e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88664.71931516945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 626.431807020769, dt = 1.253581192512875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 278.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2284873704148463e-21,2.421564180664726e-21,5.107240058931369e-22)
    sum a = (-4.211254501262156e-23,3.606648793599488e-23,-2.5939222711499588e-23)
    sum e = 2.399057969329054e-13
    sum de = 1.3883951931889808e-28
Info: cfl dt = 1.2535641226696812 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0734e+04 | 1536 |      1 | 4.998e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90299.68712395275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 627.685388213282, dt = 1.2535641226696812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 310.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1802378213551595e-21,2.521635361916593e-21,4.1675924798816294e-22)
    sum a = (2.769587602274797e-23,5.580801889631092e-24,2.973039605206221e-23)
    sum e = 2.399048075972642e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2535473666210417 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0666e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90097.84280970407 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 628.9389523359516, dt = 1.2535473666210417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.5%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 277.21 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2538818699199448e-21,2.5095246676508632e-21,4.8892042607012245e-22)
    sum a = (-2.5288689090493847e-23,4.965675524258977e-25,-1.328658544971269e-23)
    sum e = 2.399037942080712e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.2535309286995167 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0534e+04 | 1536 |      1 | 5.030e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89708.93050475915 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 630.1924997025727, dt = 1.2535309286995167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 281.71 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1980139710087283e-21,2.506957215139457e-21,4.45303368331522e-22)
    sum a = (7.819389639278224e-23,-2.1561261493102176e-24,1.7941691009818518e-23)
    sum e = 2.3990275788864317e-13
    sum de = 0
Info: cfl dt = 1.2535148131460845 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0576e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89831.32434748157 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 631.4460306312723, dt = 1.2535148131460845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.7%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 269.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.367310634376051e-21,2.5025935171766068e-21,4.873663489810798e-22)
    sum a = (7.12897668398336e-23,-8.382717725147319e-24,-1.799399987150452e-23)
    sum e = 2.3990169978675496e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2534990241092403 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0329e+04 | 1536 |      1 | 5.064e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89105.47534740929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 632.6995454444184, dt = 0.6680927309080289 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 284.90 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4011699670495156e-21,2.4930911426283143e-21,4.528217280467711e-22)
    sum a = (-6.176682952542169e-23,-2.4716754867020866e-23,7.224484116690519e-23)
    sum e = 2.3986895451622214e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.253490632205404 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0694e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48061.20941389577 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 534                                                     [SPH][rank=0]
Info: time since start : 130.961969305 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001078161 s
sph::RenderFieldGetter compute custom field took :  0.000988975 s
rho_t_ampl=0.00115748, rho_t_phi=3.14159 rad
eps_t_ampl=-1.33197e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.5151e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 645.32s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 633.3676381753264, dt = 1.253490632205404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.53 us    (2.1%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 377.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (75.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.284355269326063e-21,2.4566560910048025e-21,5.735239165463137e-22)
    sum a = (5.406912186293873e-23,8.641322602074397e-23,-7.015228879152148e-24)
    sum e = 2.399003566164806e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2534748311969712 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9863e+04 | 1536 |      1 | 5.143e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87733.38269932152 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 634.6211288075318, dt = 1.2534748311969712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.4%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 320.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.416406666752575e-21,2.634622388557822e-21,5.1505462605581385e-22)
    sum a = (-1.1930124246666032e-22,-1.2457651549248964e-22,7.963650915536072e-23)
    sum e = 2.398990803169462e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2534594439715576 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0762e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90374.45090869236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 635.8746036387288, dt = 1.2534594439715576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 288.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1607687050679172e-21,2.3462340369433877e-21,6.691836468943895e-22)
    sum a = (6.245459722035144e-23,-6.439550857709024e-23,-1.6411478573436127e-23)
    sum e = 2.398979569363684e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.253444396819628 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0520e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89661.83083869105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 637.1280630827004, dt = 1.253444396819628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 303.26 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3486880014056457e-21,2.303235433038936e-21,5.884166423865613e-22)
    sum a = (8.03894624958272e-23,-4.5746351963326507e-23,-1.089789316272506e-24)
    sum e = 2.398968150550709e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2534296945538825 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0712e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90224.22429239667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 638.38150747952, dt = 1.2534296945538825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 275.21 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.477353465564811e-21,2.2575838189831434e-21,5.9665311087126865e-22)
    sum a = (7.033747310839241e-23,1.3063463317393042e-22,1.951460105501266e-23)
    sum e = 2.398956581416757e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2534153408976563 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8874e+04 | 1536 |      1 | 5.320e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84824.33380174202 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 639.6349371740739, dt = 1.2534153408976563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 276.55 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.543379164278067e-21,2.5318631164556318e-21,6.340260885699209e-22)
    sum a = (1.4496026800827018e-23,-2.0351629651874086e-23,-3.683704655295235e-23)
    sum e = 2.3989448746038173e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.2534013394819377 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0604e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89904.38654953326 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 640.8883525149715, dt = 1.2534013394819377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.4%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 300.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.55015103081276e-21,2.411731510227485e-21,5.525384752795475e-22)
    sum a = (-9.6313929893816e-23,-1.637231462767441e-23,-1.1507042065643855e-22)
    sum e = 2.3989330430193017e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2533876938388955 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8603e+04 | 1536 |      1 | 5.370e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84026.74427151425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 642.1417538544534, dt = 1.2533876938388955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 300.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.336837234969933e-21,2.3937012709161887e-21,3.59281718157167e-22)
    sum a = (5.298456511324182e-23,5.1374020685158855e-23,2.5438484763104124e-23)
    sum e = 2.398921099700271e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2533744074012954 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5344e+04 | 1536 |      1 | 6.061e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74452.21989862502 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 643.3951415482924, dt = 1.2533744074012954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 304.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.499362031802563e-21,2.500551500171318e-21,4.792217303860931e-22)
    sum a = (-8.81136227619613e-23,5.987901389156323e-23,7.774158865093808e-23)
    sum e = 2.3989090578001027e-13
    sum de = -5.301145283085199e-28
Info: cfl dt = 1.2533614835018916 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4855e+04 | 1536 |      1 | 6.180e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73012.52317338892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 644.6485159556937, dt = 0.6694550153936234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 277.80 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.365617667742378e-21,2.5459694840050195e-21,5.640439127334671e-22)
    sum a = (5.793120199600579e-23,8.860205949700518e-23,9.569728583967222e-24)
    sum e = 2.3986444159975747e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2533548203954996 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0494e+04 | 1536 |      1 | 5.037e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47845.43887038751 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 544                                                     [SPH][rank=0]
Info: time since start : 131.814315878 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00107741 s
sph::RenderFieldGetter compute custom field took :  0.000936567 s
rho_t_ampl=0.00103872, rho_t_phi=3.14159 rad
eps_t_ampl=-1.44153e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.90258e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 657.27s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 645.3179709710873, dt = 1.2533548203954996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.76 us    (2.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 348.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.489204232000524e-21,2.6666301423061893e-21,5.532191813688113e-22)
    sum a = (2.4018964115238928e-23,2.306889844733769e-23,7.97513105328062e-23)
    sum e = 2.3988939504611887e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2533423662978058 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5193e+04 | 1536 |      1 | 6.097e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74006.98667486697 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 646.5713257914829, dt = 1.2533423662978058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (0.9%)
   patch tree reduce : 1.84 us    (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 532.59 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.479046432198484e-21,2.654479407478292e-21,6.971560896466229e-22)
    sum a = (8.046882030678063e-23,-3.6291357670572764e-23,4.9572585387649965e-23)
    sum e = 2.3988798810623685e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2533303762466408 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0132e+04 | 1536 |      1 | 5.098e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88512.26778001104 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 647.8246681577807, dt = 1.2533303762466408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 331.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.622948596060709e-21,2.5717962149205583e-21,7.403747793493945e-22)
    sum a = (4.0155052342436886e-23,-2.5675933314800513e-22,-2.133385448462058e-23)
    sum e = 2.3988676151782925e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2533187588240158 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0201e+04 | 1536 |      1 | 5.086e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88714.12416514556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 649.0779985340273, dt = 1.2533187588240158 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 265.45 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6483430955658074e-21,2.1118332794407953e-21,6.692020618440699e-22)
    sum a = (4.684756106617637e-23,5.340357990908941e-23,9.646248878721502e-24)
    sum e = 2.398855293599692e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2533075177870603 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9823e+04 | 1536 |      1 | 5.150e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87604.61843573372 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 650.3313172928513, dt = 1.2533075177870603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 277.49 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.736377360516815e-21,2.3731301350276207e-21,7.007057504300008e-22)
    sum a = (5.256132345482351e-23,-1.0420148148621328e-22,4.226225995649317e-23)
    sum e = 2.398842947791328e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2532966558984653 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0318e+04 | 1536 |      1 | 5.066e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89058.62217104831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 651.5846248106384, dt = 1.2532966558984653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.4%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 277.38 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.773622626457626e-21,2.1437738683752048e-21,7.741118454462118e-22)
    sum a = (-4.883150634001218e-23,-3.0000985354096335e-23,-3.641638099262676e-23)
    sum e = 2.3988305911779336e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2532861758241254 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9995e+04 | 1536 |      1 | 5.121e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88107.83686166156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 652.8379214665368, dt = 1.2532861758241254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 275.96 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.668658695169886e-21,2.1526732062246377e-21,6.791678597785247e-22)
    sum a = (-5.473043695421733e-23,3.2116748033479876e-23,-1.639781039582205e-23)
    sum e = 2.398818237316308e-13
    sum de = 4.291403324402304e-28
Info: cfl dt = 1.2532760801260643 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0433e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89394.97244852752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 654.0912076423609, dt = 1.2532760801260643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 276.06 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.568773663783165e-21,2.2318502921632818e-21,6.711613751374089e-22)
    sum a = (-8.554772020780032e-23,1.4222544271792726e-22,-6.626152514313192e-24)
    sum e = 2.3988058997534255e-13
    sum de = 7.573064690121713e-28
Info: cfl dt = 1.2532663712620915 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0403e+04 | 1536 |      1 | 5.052e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89306.2002247371 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 655.344483722487, dt = 1.2532663712620915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 283.41 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.443494132891346e-21,2.4790875889095236e-21,6.689803335633326e-22)
    sum a = (1.1771408624759167e-22,-1.666913144012719e-23,1.4046252900846053e-23)
    sum e = 2.3987935920118546e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2532570515854302 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0143e+04 | 1536 |      1 | 5.096e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88538.86787361212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 656.597750093749, dt = 0.6705536730992208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 279.60 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.658500895367847e-21,2.368340973800967e-21,6.913531152993257e-22)
    sum a = (9.517646793681681e-23,5.778435646333496e-23,-1.736279722444495e-23)
    sum e = 2.3985963758078425e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.253252330830584 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0163e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47404.17379717305 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 554                                                     [SPH][rank=0]
Info: time since start : 132.651669734 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001001909 s
sph::RenderFieldGetter compute custom field took :  0.0008458290000000001 s
rho_t_ampl=0.000894703, rho_t_phi=3.14159 rad
eps_t_ampl=-1.5373e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.24177e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 669.22s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 657.2683037668482, dt = 1.253252330830584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.61 us    (2.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 345.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.766850759922933e-21,2.4657253041683075e-21,6.590624222429867e-22)
    sum a = (8.054817811773407e-23,8.454910212919368e-23,3.2055750209486144e-23)
    sum e = 2.3987783126656935e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.2532435057277085 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 1536 |      1 | 5.122e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88077.22011478934 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 658.5215560976789, dt = 1.2532435057277085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 280.39 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.875200624478019e-21,2.5884633184999565e-21,7.302030378930829e-22)
    sum a = (-1.4363763782571297e-23,-1.946148920596478e-23,4.6117731144099144e-23)
    sum e = 2.398764323132649e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.253235183260194 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0088e+04 | 1536 |      1 | 5.105e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88376.54673704683 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 659.7747996034066, dt = 1.253235183260194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 314.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7770085597249726e-21,2.4988950091981482e-21,7.968109442770207e-22)
    sum a = (-4.409649028645737e-23,-2.4188025701757398e-23,8.266636120140526e-23)
    sum e = 2.3987522416766193e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2532272566972968 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0342e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89121.88100567575 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 661.0280347866668, dt = 1.2532272566972968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 311.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7177547275464096e-21,2.4656245569473705e-21,9.23312695890413e-22)
    sum a = (5.589435151486768e-23,3.0620656646182193e-23,9.122092291516878e-23)
    sum e = 2.398740237337962e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2532197286797038 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0353e+04 | 1536 |      1 | 5.060e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89154.6486081789 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 662.2812620433641, dt = 1.2532197286797038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 310.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.849806124972921e-21,2.5383403877832567e-21,1.0429929611104918e-21)
    sum a = (4.499587881059627e-23,1.099349638517278e-23,-2.070565048909278e-23)
    sum e = 2.3987283366789587e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2532126009689313 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9815e+04 | 1536 |      1 | 5.152e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87573.8983540755 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 663.5344817720438, dt = 1.2532126009689313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.4%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 321.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.912445890418831e-21,2.5398134671490797e-21,9.4691008402965e-22)
    sum a = (4.1795113768807826e-23,-3.1367429275989547e-23,-3.5488824004319986e-23)
    sum e = 2.3987165525788623e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2532058752274464 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0155e+04 | 1536 |      1 | 5.094e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88571.77685834996 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 664.7876943730128, dt = 1.2532058752274464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 283.16 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.932761490022909e-21,2.473957850410862e-21,8.93172051616596e-22)
    sum a = (6.65018455789765e-23,-6.664841018189664e-23,-4.5243223547658403e-23)
    sum e = 2.398704897906307e-13
    sum de = -5.301145283085199e-28
Info: cfl dt = 1.2531995530110918 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9791e+04 | 1536 |      1 | 5.156e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87502.34417095319 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 666.0409002482402, dt = 1.2531995530110918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 271.50 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0817425537861535e-21,2.368329297456387e-21,8.303611286814014e-22)
    sum a = (-3.3224470185837104e-23,1.3767590165230192e-22,4.6724168631040904e-23)
    sum e = 2.398693385382014e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2531936357689875 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9809e+04 | 1536 |      1 | 5.153e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87556.0573521555 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 667.2940998012513, dt = 1.2531936357689875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 274.80 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9615419227953545e-21,2.6688955598157504e-21,9.46542306831295e-22)
    sum a = (-1.8478466280506777e-22,-7.220842004089911e-23,9.099752734182631e-23)
    sum e = 2.3986820275631033e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2531881248433876 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9431e+04 | 1536 |      1 | 5.219e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86444.54550121438 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 668.5472934370202, dt = 0.6713431255888054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 321.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.724526594081103e-21,2.488907084710181e-21,1.035374416943117e-21)
    sum a = (9.08646935416803e-24,-2.996680879684002e-23,4.9192849173601547e-23)
    sum e = 2.398550285376165e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.253185457543454 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9706e+04 | 1536 |      1 | 5.171e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46741.68884765526 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 564                                                     [SPH][rank=0]
Info: time since start : 133.48337814500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001105913 s
sph::RenderFieldGetter compute custom field took :  0.001057253 s
rho_t_ampl=0.000729087, rho_t_phi=3.14159 rad
eps_t_ampl=-1.61693e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.5243e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 681.17s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 669.218636562609, dt = 1.253185457543454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.13 us    (2.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 345.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7719296598239526e-21,2.4655324894870066e-21,1.0829895384897243e-21)
    sum a = (-8.239986037331416e-23,7.617202398806452e-23,8.772422213253791e-23)
    sum e = 2.3986680937932724e-13
    sum de = -6.058451752097371e-28
Info: cfl dt = 1.2531804538769546 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5364e+04 | 1536 |      1 | 6.056e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74497.69299320079 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 670.4718220201526, dt = 1.2531804538769546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 299.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.617869696159689e-21,2.627498061745574e-21,1.2170672971234439e-21)
    sum a = (-4.6556582426013776e-24,-1.5969908592432254e-23,1.6672436850899913e-23)
    sum e = 2.398655555926067e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531759791752228 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3090e+04 | 1536 |      1 | 6.652e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67818.23460884002 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 671.7250024740296, dt = 1.2531759791752228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 301.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.66527276190254e-21,2.549752412988099e-21,1.1934404402352225e-21)
    sum a = (-3.5248094365149636e-23,-1.4549285107764223e-22,7.384372312828492e-23)
    sum e = 2.398644851909193e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531719140535444 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3668e+04 | 1536 |      1 | 6.490e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69517.14733589928 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 672.9781784532048, dt = 1.2531719140535444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 326.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6364923291300944e-21,2.2862629878822364e-21,1.3218021614194698e-21)
    sum a = (3.6438461529451124e-23,-4.9084861382586717e-23,-3.055514423502408e-23)
    sum e = 2.398634348225877e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.2531682600002763 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3806e+04 | 1536 |      1 | 6.452e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69922.58285680959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 674.2313503672583, dt = 1.2531682600002763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 333.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.746535160318854e-21,2.285154871782413e-21,1.2180965602650845e-21)
    sum a = (-7.098556189784544e-23,-3.4492751763407447e-23,2.0701078568327705e-24)
    sum e = 2.398624065337142e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.253165017756839 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3879e+04 | 1536 |      1 | 6.432e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70135.43154201217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 675.4845186272586, dt = 1.253165017756839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 292.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.568773663783165e-21,2.2510657321147286e-21,1.2411332122122374e-21)
    sum a = (3.9758263287669723e-23,1.3644075041084737e-23,-4.6404084033748605e-24)
    sum e = 2.3986140143117826e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.2531621879653585 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4950e+04 | 1536 |      1 | 6.156e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73282.15883807195 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 676.7376836450154, dt = 1.2531621879653585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 295.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.653421995466827e-21,2.2983299216884105e-21,1.231113335750304e-21)
    sum a = (3.2034103021535616e-23,8.207411909831192e-24,9.24392265205818e-23)
    sum e = 2.398604206064636e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.2531597711607774 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3468e+04 | 1536 |      1 | 6.545e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68928.13414469543 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 677.9908458329808, dt = 1.2531597711607774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 308.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.724526594081103e-21,2.3052123518399266e-21,1.4077827195570885e-21)
    sum a = (5.508754710350778e-23,-3.3415310286189214e-24,3.5021725205320014e-23)
    sum e = 2.3985946512403505e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2531577677709576 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3525e+04 | 1536 |      1 | 6.529e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69094.80386692878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 679.2440056041415, dt = 1.2531577677709576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 299.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.809174925764764e-21,2.2937955734328658e-21,1.4156938151345054e-21)
    sum a = (-7.159397178182175e-23,1.0303465752665062e-22,1.5331627574511855e-23)
    sum e = 2.398585360200198e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531561781167617 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3573e+04 | 1536 |      1 | 6.516e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69235.48867436695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 680.4971633719125, dt = 0.671805986457457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 323.58 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.683895394872945e-21,2.4296590390386666e-21,1.4136562949241307e-21)
    sum a = (7.110459861427559e-23,-2.7619810256401758e-24,9.833598729207813e-23)
    sum e = 2.3985108119783057e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2531556231746483 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9626e+04 | 1536 |      1 | 5.185e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46647.94381062219 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 574                                                     [SPH][rank=0]
Info: time since start : 134.431555346 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008790600000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007656280000000001 s
rho_t_ampl=0.000546048, rho_t_phi=3.14159 rad
eps_t_ampl=-1.67844e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.74322e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 693.12s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 681.16896935837, dt = 1.2531556231746483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.74 us    (2.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 340.62 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.804096025863744e-21,2.390659221496307e-21,1.5647680032397159e-21)
    sum a = (1.6889987431255568e-23,-1.1022219030372601e-23,-9.253019149876417e-24)
    sum e = 2.3985741515315765e-13
    sum de = 0
Info: cfl dt = 1.2531545412832779 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4781e+04 | 1536 |      1 | 6.198e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72784.19107483025 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 682.4221249815446, dt = 1.2531545412832779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 310.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.800710092596398e-21,2.3716747251743926e-21,1.4857596560643134e-21)
    sum a = (-7.51253943692495e-24,-1.0990888501380819e-22,7.755381611790977e-23)
    sum e = 2.398564287818383e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.2531540020995944 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3681e+04 | 1536 |      1 | 6.486e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69552.33615906064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 683.6752795228279, dt = 1.2531540020995944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 340.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.76007889338824e-21,2.1719811269583805e-21,1.6373377210256581e-21)
    sum a = (-1.2609956160500436e-22,-1.4237312296715618e-23,2.0336127267337977e-23)
    sum e = 2.3985560131961196e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531538764515848 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3751e+04 | 1536 |      1 | 6.467e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69757.19826689384 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 684.9284335249274, dt = 1.2531538764515848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 299.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.528142464575008e-21,2.214085198871395e-21,1.6269707298557806e-21)
    sum a = (6.573472007309332e-23,7.31892790000074e-23,1.0500007815226078e-22)
    sum e = 2.3985480404351544e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2531541646628925 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3568e+04 | 1536 |      1 | 6.517e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69221.81065086344 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 686.181587401379, dt = 1.2531541646628925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.3%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 311.95 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7109828610117165e-21,2.3605881909910386e-21,1.8116004942058195e-21)
    sum a = (-5.148999300695217e-23,-1.118892500478615e-23,-5.366789291456609e-23)
    sum e = 2.3985403832962887e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2531548664562868 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3614e+04 | 1536 |      1 | 6.505e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69354.90490280474 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 687.4347415660419, dt = 1.2531548664562868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 300.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.629720462595401e-21,2.2937015426933246e-21,1.644928598656943e-21)
    sum a = (-6.326140163171134e-23,-3.751796315817442e-23,3.798483556316583e-24)
    sum e = 2.398533049952373e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.25315598145691 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3883e+04 | 1536 |      1 | 6.431e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70145.64040199663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 688.6878964324982, dt = 1.25315598145691 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 326.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.49766906516889e-21,2.2301876013611313e-21,1.6856958257120443e-21)
    sum a = (4.694014517895537e-23,2.3242232910782596e-23,2.5814278882658297e-23)
    sum e = 2.398526048298635e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531575091842166 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3801e+04 | 1536 |      1 | 6.454e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69905.13966829245 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 689.941052413955, dt = 1.2531575091842166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 333.15 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.629720462595401e-21,2.2973811411933918e-21,1.7318397959379316e-21)
    sum a = (-1.1795877283136475e-22,3.215487698171141e-23,-1.4735658093421046e-23)
    sum e = 2.398519385862862e-13
    sum de = 0
Info: cfl dt = 1.2531594490522624 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3448e+04 | 1536 |      1 | 6.551e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68868.83107659603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 691.1942099231393, dt = 1.2531594490522624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 341.40 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3757754675444172e-21,2.343266695462724e-21,1.6879659377508928e-21)
    sum a = (-7.197092138385056e-23,-1.9247629415078796e-23,-5.7595631570039e-23)
    sum e = 2.39851306979815e-13
    sum de = -4.291403324402304e-28
Info: cfl dt = 1.2531618003700253 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3473e+04 | 1536 |      1 | 6.544e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68940.91099363161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 692.4473693721916, dt = 0.6719327819392902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 328.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3757754675444172e-21,2.29813917361677e-21,1.6224103544282566e-21)
    sum a = (4.098169620653514e-23,4.0782242138065987e-23,-3.579164088741658e-23)
    sum e = 2.3984819376950887e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.253163363618749 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3561e+04 | 1536 |      1 | 6.519e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37105.271860679524 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 584                                                     [SPH][rank=0]
Info: time since start : 135.39765852300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009049180000000001 s
sph::RenderFieldGetter compute custom field took :  0.000808539 s
rho_t_ampl=0.000350191, rho_t_phi=3.14159 rad
eps_t_ampl=-1.72035e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.89318e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 705.07s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 693.1193021541309, dt = 1.253163363618749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.85 us    (2.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 365.70 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.467195665762772e-21,2.369416954120574e-21,1.5848829894028655e-21)
    sum a = (-3.39849825408075e-23,6.273425804445526e-23,4.374649588729349e-23)
    sum e = 2.398505689708969e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.253166211189276 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3694e+04 | 1536 |      1 | 6.483e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69591.4685735551 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 694.3724655177497, dt = 1.253166211189276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 313.75 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3723895342770707e-21,2.4617822129365588e-21,1.689541759415048e-21)
    sum a = (-5.523303642358907e-23,-1.671122352610781e-23,-1.649390272493161e-24)
    sum e = 2.398499453707618e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.2531696025425456 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0173e+04 | 1536 |      1 | 5.091e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88621.64668644799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 695.625631728939, dt = 1.2531696025425456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 285.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2741974695240236e-21,2.3910653102945454e-21,1.6590304983314923e-21)
    sum a = (-1.9701237884280916e-22,-8.622973454418105e-23,-9.118202923850025e-25)
    sum e = 2.398494416188697e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2531734017397846 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0492e+04 | 1536 |      1 | 5.037e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89559.7268348011 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 696.8788013314816, dt = 1.2531734017397846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.7%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 283.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9559197423934565e-21,2.2394542790776727e-21,1.6583499795333289e-21)
    sum a = (4.8533914548936807e-23,2.893539660982206e-23,2.012438232626479e-23)
    sum e = 2.398489750457163e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.253177607949955 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0364e+04 | 1536 |      1 | 5.059e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89183.80015960294 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 698.1319747332213, dt = 1.253177607949955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 275.33 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.182777271305669e-21,2.347862008703246e-21,1.6967504096361032e-21)
    sum a = (-8.843766715668783e-23,1.1719882576679067e-22,-3.564613302636616e-24)
    sum e = 2.398485463627334e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.2531822198978848 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0164e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88594.81586444563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 699.3851523411713, dt = 1.2531822198978848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.7%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.3%)
   LB compute        : 272.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9457619425914173e-21,2.550045871559854e-21,1.6774400401859048e-21)
    sum a = (5.709794498099474e-23,5.399745975116151e-23,-3.200425576446907e-23)
    sum e = 2.3984815601813313e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.2531872362142271 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0338e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89107.53399515478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 700.6383345610692, dt = 1.2531872362142271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 288.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.11505860595874e-21,2.5780984444099604e-21,1.6195126882206548e-21)
    sum a = (3.7923113909371594e-23,7.22907699958782e-23,1.4860122382456656e-23)
    sum e = 2.3984780442271065e-13
    sum de = 4.291403324402304e-28
Info: cfl dt = 1.2531926554273556 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0107e+04 | 1536 |      1 | 5.102e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88428.04260900227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 701.8915217972834, dt = 1.2531926554273556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.7%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 277.54 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.152303871899551e-21,2.68016168237858e-21,1.6675002047124994e-21)
    sum a = (-4.428165851201538e-23,-1.0843298262689841e-23,2.5599935270458102e-23)
    sum e = 2.3984749194458617e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.253198475963857 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0045e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88248.59492619403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 703.1447144527108, dt = 1.253198475963857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 274.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.047339940611811e-21,2.6144877206294975e-21,1.7063115318942105e-21)
    sum a = (-8.38547535741271e-23,1.486442419084776e-23,-5.864726087094066e-23)
    sum e = 2.398472189088086e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2532046961489984 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0179e+04 | 1536 |      1 | 5.090e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88641.5134658116 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 704.3979129286746, dt = 0.6717220212170787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 301.26 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9897790750669214e-21,2.6405774276243026e-21,1.6141276463787927e-21)
    sum a = (9.669749264675759e-23,9.312570699303788e-23,5.143006853072648e-23)
    sum e = 2.398466547055603e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.253208330839246 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0269e+04 | 1536 |      1 | 5.075e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47653.537052064516 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 594                                                     [SPH][rank=0]
Info: time since start : 136.23742181100002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009160590000000001 s
sph::RenderFieldGetter compute custom field took :  0.00085214 s
rho_t_ampl=0.000146433, rho_t_phi=3.14159 rad
eps_t_ampl=-1.74165e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.97059e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 717.02s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 705.0696349498917, dt = 1.253208330839246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 373.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.128602339028126e-21,2.7835663566776647e-21,1.71555091981505e-21)
    sum a = (-1.069346502597504e-23,5.591309308122403e-26,-2.6683838055223194e-23)
    sum e = 2.3984693551939037e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.253215024170486 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9949e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87967.78231069268 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 706.3228432807309, dt = 1.253215024170486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.7%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 284.20 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0710414734832363e-21,2.7253133835575584e-21,1.6331638338177745e-21)
    sum a = (2.6035975143638672e-23,-1.2094179148374795e-22,-4.929540218483486e-23)
    sum e = 2.398467338762212e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.2532222498427916 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3151e+04 | 1536 |      1 | 6.635e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68000.87503644163 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 707.5760583049014, dt = 1.2532222498427916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 307.75 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1319882722954723e-21,2.4979311424526096e-21,1.5572171630411668e-21)
    sum a = (3.429580063370845e-23,2.4840784544680946e-23,-2.1672108851275544e-23)
    sum e = 2.3984660230434615e-13
    sum de = -5.806016262426647e-28
Info: cfl dt = 1.2532298682725833 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5681e+04 | 1536 |      1 | 5.981e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75430.5969044239 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 708.8292805547442, dt = 1.2532298682725833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 275.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1760054047709764e-21,2.620413930491218e-21,1.5473660918301033e-21)
    sum a = (-1.6684235773481511e-22,-1.7398336273283662e-23,-1.2160700763600148e-23)
    sum e = 2.3984651106634665e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2532378775048951 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0074e+04 | 1536 |      1 | 5.107e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88336.23306692891 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 710.0825104230167, dt = 1.2532378775048951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.7%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 279.62 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8272542782342914e-21,2.572146401927487e-21,1.5380858313685757e-21)
    sum a = (-1.1458658251825892e-22,4.681440893378679e-23,-3.4441144649574933e-23)
    sum e = 2.3984646027912175e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2532462753049862 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0143e+04 | 1536 |      1 | 5.096e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88539.39685119606 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 711.3357483005217, dt = 1.2532462753049862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 284.31 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7493778130853227e-21,2.671036154101833e-21,1.4809612470164633e-21)
    sum a = (1.579133640367578e-22,-1.1351466599280425e-22,-7.088877729556022e-23)
    sum e = 2.398464499787676e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2532527706922805 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0025e+04 | 1536 |      1 | 5.116e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88192.95047567002 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 712.5889945758266, dt = 1.2532527706922805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.7%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 274.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0879711398199685e-21,2.4283136761498467e-21,1.3692807605311629e-21)
    sum a = (2.075587012609747e-22,4.275099742726429e-23,1.446352843344291e-23)
    sum e = 2.398464801580696e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.253244816172898 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0052e+04 | 1536 |      1 | 5.111e-02 | 0.0% |   1.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88272.60219300709 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 713.8422473465189, dt = 1.253244816172898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 269.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3859332673464568e-21,2.579804844006425e-21,1.440891109383871e-21)
    sum a = (-1.5464853409550172e-23,-3.123461570000403e-23,5.850906890896192e-23)
    sum e = 2.398465507631929e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2532370313104662 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0085e+04 | 1536 |      1 | 5.106e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88368.42037661224 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 715.0954921626918, dt = 1.2532370313104662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 280.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2200225372464802e-21,2.4943137489033155e-21,1.5418167638463013e-21)
    sum a = (4.027408905886703e-24,-4.668522887736407e-24,-3.861431824274959e-23)
    sum e = 2.3984666169248595e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.2532296560323384 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0027e+04 | 1536 |      1 | 5.115e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88197.96523696418 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 716.3487291940023, dt = 0.6712385516502763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 284.18 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2572678031872913e-21,2.50781387650887e-21,1.4550380321036656e-21)
    sum a = (6.974890267715445e-23,5.537684339424382e-23,4.350191030282225e-24)
    sum e = 2.398466131408651e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.2532260183633719 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3724e+04 | 1536 |      1 | 6.474e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37323.73614701998 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 604                                                     [SPH][rank=0]
Info: time since start : 137.269754358 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010491580000000001 s
sph::RenderFieldGetter compute custom field took :  0.000941297 s
rho_t_ampl=-6.01196e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-1.74184e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.97365e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 728.97s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 717.0199677456526, dt = 1.2532260183633719 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.52 us    (2.3%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 356.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.365617667742378e-21,2.5973668928991926e-21,1.4749095221760678e-21)
    sum a = (-7.472860531448235e-24,-1.1488231436064006e-23,2.5928121581990715e-23)
    sum e = 2.398468590288756e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2532191326006021 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9122e+04 | 1536 |      1 | 5.274e-02 | 0.1% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85538.19547959305 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 718.273193764016, dt = 1.2532191326006021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 290.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.308056802197488e-21,2.5410718257712033e-21,1.520924152209973e-21)
    sum a = (-9.733566170984145e-23,9.582442756316607e-24,-7.517906626872734e-23)
    sum e = 2.3984709660640967e-13
    sum de = -6.310887241768094e-28
Info: cfl dt = 1.2532128042058894 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9434e+04 | 1536 |      1 | 5.218e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86455.43194559785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 719.5264128966166, dt = 1.2532128042058894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 285.57 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.159075738434244e-21,2.5662958299793315e-21,1.363354052624742e-21)
    sum a = (-8.774989946175807e-23,-4.123485104629884e-23,-3.987948303392832e-23)
    sum e = 2.398473486412522e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2532068916661354 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0160e+04 | 1536 |      1 | 5.093e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88585.24331350651 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 720.7796257008225, dt = 1.2532068916661354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 280.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0371821408097717e-21,2.482771733950844e-21,1.3354957544970302e-21)
    sum a = (-1.603093912768466e-22,4.374122394047317e-23,8.510548857745111e-24)
    sum e = 2.398476400007397e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2532013964778361 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3697e+04 | 1536 |      1 | 6.482e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69603.35997835424 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 722.0328325924886, dt = 1.2532013964778361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.3%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 338.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7629215461547088e-21,2.5908229734100247e-21,1.3764825469376625e-21)
    sum a = (3.437515844466188e-23,-4.784396561209222e-23,-6.5654043957920505e-25)
    sum e = 2.3984797033095397e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2531963200058733 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4980e+04 | 1536 |      1 | 6.149e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73370.7872845937 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 723.2860339889664, dt = 1.2531963200058733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 308.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.935604142789378e-21,2.473485836764462e-21,1.3699156683202677e-21)
    sum a = (-1.1791248077497523e-23,8.133226273914163e-24,1.0762280222755514e-22)
    sum e = 2.398483392492337e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2531916635031914 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0361e+04 | 1536 |      1 | 5.059e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89174.30414539704 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 724.5392303089723, dt = 1.2531916635031914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 306.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9152885431852993e-21,2.5187474815773656e-21,1.5726353037562733e-21)
    sum a = (-2.0963688393531774e-23,7.84723332955692e-24,-6.320852756539758e-23)
    sum e = 2.3984874632832683e-13
    sum de = 9.844984097158227e-28
Info: cfl dt = 1.2531874281005155 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0189e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88670.00395918371 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 725.7924219724755, dt = 1.2531874281005155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 303.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8509558111057167e-21,2.5284022685881013e-21,1.3863809724817068e-21)
    sum a = (3.3528675127825265e-24,-1.461959229858294e-23,1.156440464362061e-22)
    sum e = 2.3984919109934095e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.2531836148061406 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9847e+04 | 1536 |      1 | 5.146e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87665.01608140519 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 727.045609400576, dt = 1.2531836148061406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 306.00 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.898358876848567e-21,2.496007955502785e-21,1.643372095236546e-21)
    sum a = (1.1270131785569984e-22,-3.337577830374303e-24,3.403120783478841e-23)
    sum e = 2.398496730522247e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2531802245057264 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9771e+04 | 1536 |      1 | 5.159e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87442.40968325836 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 728.2987930153822, dt = 0.6715075260311778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.6%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 283.38 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0371821408097717e-21,2.5008312157888323e-21,1.6150863713709922e-21)
    sum a = (-4.5723325411002735e-23,3.6597451622953495e-23,4.091509033543929e-23)
    sum e = 2.3984806684461897e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2531787217797168 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0657e+04 | 1536 |      1 | 5.010e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48249.27285528687 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 614                                                     [SPH][rank=0]
Info: time since start : 138.12497811600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001096125 s
sph::RenderFieldGetter compute custom field took :  0.0009343330000000001 s
rho_t_ampl=-0.000264304, rho_t_phi=3.14159 rad
eps_t_ampl=-1.72097e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.90242e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 740.92s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 728.9703005414134, dt = 1.2531787217797168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.51 us    (2.1%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 492.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 375.85 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9559197423934565e-21,2.5600945543718323e-21,1.6686715814327556e-21)
    sum a = (-2.270956023450729e-23,-1.0355141327219505e-22,1.621403130551012e-24)
    sum e = 2.3985032953735154e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.2531758437911167 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0120e+04 | 1536 |      1 | 5.100e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88465.97464366443 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 730.2234792631931, dt = 1.2531758437911167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 289.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8848151437791812e-21,2.3425154828512248e-21,1.6460824783163143e-21)
    sum a = (1.0329741725771807e-23,7.862166683252631e-23,-9.538196797846753e-23)
    sum e = 2.3985097975170186e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.253173529078428 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0531e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89673.87182319695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 731.4766551069843, dt = 1.253173529078428 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 282.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9559197423934565e-21,2.5551909029700015e-21,1.4657711801741444e-21)
    sum a = (-6.509324443455307e-23,5.503775472700624e-23,-1.1320126829199123e-23)
    sum e = 2.3985158858246256e-13
    sum de = 0
Info: cfl dt = 1.2531716397072499 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0391e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89261.36505554302 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 732.7298286360627, dt = 1.2531716397072499 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 284.34 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8001668120955195e-21,2.6093829881077248e-21,1.5042571553409215e-21)
    sum a = (-5.963739493150459e-23,-2.343452044516627e-23,3.044887129113574e-23)
    sum e = 2.398522316955378e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253170175813832 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0950e+04 | 1536 |      1 | 4.963e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90903.26571912298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 733.98300027577, dt = 1.253170175813832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.5%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 275.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.722290346946551e-21,2.530847481138104e-21,1.56858663466186e-21)
    sum a = (4.2377071049133e-23,-3.895364173276346e-23,-1.1942913724291966e-23)
    sum e = 2.398529084454163e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531691375937701 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3038e+04 | 1536 |      1 | 6.667e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67664.86790366302 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 735.2361704515838, dt = 1.2531691375937701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 275.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (60.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8797362438781613e-21,2.472308902562952e-21,1.5270580834292676e-21)
    sum a = (-7.208334494936793e-24,2.7337241748833093e-24,3.040349646999906e-23)
    sum e = 2.3985361807506056e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.253168525129263 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9913e+04 | 1536 |      1 | 5.135e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87858.5536423198 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 736.4893395891776, dt = 1.253168525129263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 273.70 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.781544179125114e-21,2.501853774248722e-21,1.5916923954309194e-21)
    sum a = (-8.84971855149029e-23,1.0132146072185014e-22,-3.3189468001848225e-23)
    sum e = 2.3985435978602443e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2531683383797272 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0498e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89575.22180904524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 737.7425081143068, dt = 1.2531683383797272 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 307.56 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6444138817975825e-21,2.6906039510003517e-21,1.510254054215508e-21)
    sum a = (-1.3490827862083537e-23,1.0562426151035255e-22,-2.828501502171851e-23)
    sum e = 2.3985513274497474e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.2531685771819439 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0240e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88819.6031096982 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 738.9956764526866, dt = 1.2531685771819439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 271.37 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7002817807087993e-21,2.8256629887959024e-21,1.4778812147811315e-21)
    sum a = (1.0872020100620263e-23,3.5455310732520393e-23,-3.0227497544521496e-23)
    sum e = 2.3985593608463503e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2531692412502293 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0327e+04 | 1536 |      1 | 5.065e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89072.5952164531 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 740.2488450298684, dt = 0.6717883073058601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 271.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.691816947540433e-21,2.805520984403284e-21,1.4563576063418598e-21)
    sum a = (-2.8251380699422e-23,3.501350510701341e-23,8.32646731530247e-23)
    sum e = 2.398508677987123e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2531699042797233 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0403e+04 | 1536 |      1 | 5.052e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47868.99054663805 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 624                                                     [SPH][rank=0]
Info: time since start : 138.966453913 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009758200000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008672380000000001 s
rho_t_ampl=-0.000461023, rho_t_phi=3.14159 rad
eps_t_ampl=-1.6796e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.75885e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 752.87s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 740.9206333371743, dt = 1.2531699042797233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.75 us    (2.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 590.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 340.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.647799815064929e-21,2.8492497215007006e-21,1.5988237454496541e-21)
    sum a = (-4.9413463620337355e-23,1.2351461718027078e-22,-1.5271001373289888e-23)
    sum e = 2.3985698496437793e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.253171089983241 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9538e+04 | 1536 |      1 | 5.200e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86756.19133663773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 742.173803241454, dt = 1.253171089983241 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 321.41 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.595317849421059e-21,3.0594912954226064e-21,1.5179455971064356e-21)
    sum a = (3.753624458097361e-23,9.720030523525055e-23,-3.1988121213171964e-24)
    sum e = 2.398579804940527e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531728300683762 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9798e+04 | 1536 |      1 | 5.155e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87521.51265017726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 743.4269743314372, dt = 1.2531728300683762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.5%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 315.01 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6782732144710474e-21,3.1648101669194936e-21,1.5215011919492078e-21)
    sum a = (-5.888349572744698e-23,-1.4830200811966332e-23,1.1279527980000287e-23)
    sum e = 2.398588841472854e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.253174993816911 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0196e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88690.53394207144 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 744.6801471615056, dt = 1.253174993816911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 296.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5462218170445354e-21,3.0760334724480427e-21,1.544708345575546e-21)
    sum a = (-3.571101492904466e-23,2.058937371881978e-24,-6.099896346455127e-23)
    sum e = 2.398598135389255e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.253177580013779 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0096e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88395.6693843843 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 745.9333221553225, dt = 1.253177580013779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 283.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.492046884766992e-21,3.0891951927217318e-21,1.4229770131230314e-21)
    sum a = (2.3119575591100024e-23,-1.8189558770713066e-23,-3.576453172225974e-23)
    sum e = 2.398607679336099e-13
    sum de = 5.048709793414476e-28
Info: cfl dt = 1.2531805876917674 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0042e+04 | 1536 |      1 | 5.113e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88237.88149974387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 747.1864997353363, dt = 1.2531805876917674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 275.97 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5733092831833072e-21,3.0537134681344917e-21,1.3939692082927112e-21)
    sum a = (1.2657570847072496e-23,5.3557929818089e-23,-1.3684724113250168e-23)
    sum e = 2.3986174627612073e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2531840157721321 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9839e+04 | 1536 |      1 | 5.148e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87641.31194852019 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 748.439680323028, dt = 1.2531840157721321 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.6%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 287.75 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5919319161537126e-21,3.1657922198300424e-21,1.390654723911532e-21)
    sum a = (-2.5632572937958724e-23,-3.612666825511675e-23,8.284563710274222e-23)
    sum e = 2.3986274747695476e-13
    sum de = 9.844984097158227e-28
Info: cfl dt = 1.2531878630563684 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0190e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88672.81250035601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 749.6928643388002, dt = 1.2531878630563684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 282.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.519134350905764e-21,3.0643215821814984e-21,1.5549610236921499e-21)
    sum a = (-6.745413931041769e-23,9.057885559304758e-24,1.2839157265404599e-23)
    sum e = 2.3986377042203686e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2531921282267156 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0027e+04 | 1536 |      1 | 5.115e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88194.43427744054 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 750.9460522018566, dt = 1.2531921282267156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.9%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 286.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4057055864496576e-21,3.103994907812132e-21,1.5271853190765524e-21)
    sum a = (-3.097599887548985e-23,-1.6217865585992675e-22,1.757042374945124e-23)
    sum e = 2.3986481397377645e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253196809846697 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0047e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88252.8787308169 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 752.1992443300833, dt = 0.6717218028518346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 272.15 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3820040535782322e-21,2.8877567559695746e-21,1.5419523487515713e-21)
    sum a = (4.656980872783935e-23,-4.4075753150147844e-23,-8.141991111277333e-23)
    sum e = 2.3985473061997144e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2531996112982193 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0040e+04 | 1536 |      1 | 5.113e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47293.15534443409 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 634                                                     [SPH][rank=0]
Info: time since start : 139.797445783 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009585780000000001 s
sph::RenderFieldGetter compute custom field took :  0.00080416 s
rho_t_ampl=-0.00064538, rho_t_phi=3.14159 rad
eps_t_ampl=-1.6188e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.54666e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 764.82s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 752.8709661329351, dt = 1.2531996112982193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.43 us    (2.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 381.43 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.492046884766992e-21,2.872186195475903e-21,1.4066699646938443e-21)
    sum a = (-1.5946952111092276e-22,-2.9843726046184423e-23,-3.2579798762390303e-23)
    sum e = 2.3986614952899356e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2532048101148632 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9871e+04 | 1536 |      1 | 5.142e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87736.42380797515 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 754.1241657442333, dt = 1.2532048101148632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.3%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 333.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1449887248639804e-21,2.8437060410870917e-21,1.3964440090789787e-21)
    sum a = (-5.568273068565853e-24,6.740690113429311e-23,-6.877492543667636e-25)
    sum e = 2.398673892813244e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.2532105400636082 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3806e+04 | 1536 |      1 | 6.452e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69923.96966745304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 755.3773705543482, dt = 1.2532105400636082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 309.72 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.268575289122126e-21,2.9891165200098464e-21,1.4155657493882968e-21)
    sum a = (-3.2166366039791337e-23,-7.729448849417777e-23,-5.236747512540357e-23)
    sum e = 2.398684969086922e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2532166809983731 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3746e+04 | 1536 |      1 | 6.469e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69746.32982302684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 756.6305810944118, dt = 1.2532166809983731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 335.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.231330023181315e-21,2.8015776865105694e-21,1.317555167434867e-21)
    sum a = (3.089664106453642e-23,2.133006922459498e-23,-7.774677609027223e-23)
    sum e = 2.3986961908538044e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.253223230401107 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3698e+04 | 1536 |      1 | 6.481e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69607.06842252867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 757.8837977754101, dt = 1.253223230401107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 308.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.30751352169661e-21,2.8901079377800363e-21,1.204218219889118e-21)
    sum a = (-1.0028182044148764e-22,-1.485463685665994e-22,-2.5318432555231597e-23)
    sum e = 2.3987075519598606e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2532301861821944 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3804e+04 | 1536 |      1 | 6.453e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69916.95360697077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 759.1370210058112, dt = 1.2532301861821944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.4%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 304.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0806559927843974e-21,2.5974971409730294e-21,1.2053406049688209e-21)
    sum a = (5.0445115162731974e-23,4.807169469487971e-23,4.542748999098663e-23)
    sum e = 2.398719039919941e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2532375461455736 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3580e+04 | 1536 |      1 | 6.514e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69261.30773556969 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 760.3902511919935, dt = 1.2532375461455736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 335.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2279440899139683e-21,2.780944449001711e-21,1.3066025038947575e-21)
    sum a = (-1.066039927141111e-23,-3.5319489270755934e-23,5.1394071274260974e-23)
    sum e = 2.398730642013967e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.2532453079819117 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3772e+04 | 1536 |      1 | 6.461e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69825.49390105486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 761.643488738139, dt = 1.2532453079819117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.3%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 330.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1906988239731576e-21,2.684427758867604e-21,1.3747506544205217e-21)
    sum a = (4.2985480933109314e-23,4.609866693238966e-23,-1.175750857691616e-22)
    sum e = 2.3987423454006245e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2532534692694268 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6998e+04 | 1536 |      1 | 5.689e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79299.71724351769 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 762.896734046121, dt = 1.2532534692694268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 299.03 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2736541890231455e-21,2.7932198520573624e-21,1.121519368651475e-21)
    sum a = (-3.4943889423161476e-23,-4.3780221510577525e-23,-2.139196413684204e-23)
    sum e = 2.3987541371329696e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.253262027474793 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0611e+04 | 1536 |      1 | 5.018e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89913.70204478693 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 764.1499875153904, dt = 0.6713114133056024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (1.3%)
   patch tree reduce : 1.11 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.3%)
   LB compute        : 291.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.217786290111929e-21,2.707507474724882e-21,1.1674296144088635e-21)
    sum a = (3.565810972174237e-23,1.2655382178279192e-22,-4.010026045856462e-23)
    sum e = 2.3985926188692263e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.2532668812218422 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1621e+04 | 1536 |      1 | 4.858e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49752.04252720154 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 644                                                     [SPH][rank=0]
Info: time since start : 140.708903902 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001053034 s
sph::RenderFieldGetter compute custom field took :  0.0008758040000000001 s
rho_t_ampl=-0.000812793, rho_t_phi=3.14159 rad
eps_t_ampl=-1.54013e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-2.27128e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 776.77s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 764.821298928696, dt = 1.2532668812218422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.76 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 343.70 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2567245226864133e-21,2.923287588368867e-21,1.1108937396256497e-21)
    sum a = (3.798593884304306e-23,-1.7763243030425145e-23,9.68789591162378e-25)
    sum e = 2.398769020709689e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2532759387395025 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0495e+04 | 1536 |      1 | 5.037e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89574.4604827754 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 766.0745658099179, dt = 1.2532759387395025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.4%)
   patch tree reduce : 1.06 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 286.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3024346217955905e-21,2.8105901712389007e-21,1.1378431404452463e-21)
    sum a = (-9.073243052342458e-24,3.649503496890035e-23,-2.735045218882979e-23)
    sum e = 2.398782612538994e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.2532854905820972 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0781e+04 | 1536 |      1 | 4.990e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90415.38552890411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 767.3278417486574, dt = 1.2532854905820972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.5%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 278.89 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2871979220925316e-21,2.890329943322788e-21,1.0858193033930148e-21)
    sum a = (5.5021415594379925e-24,-2.726451646325801e-23,1.6185569338184905e-23)
    sum e = 2.398794622085549e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2532954302199049 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0810e+04 | 1536 |      1 | 4.985e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90499.85560179886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 768.5811272392395, dt = 1.2532954302199049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 311.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3176713214986497e-21,2.8162048655269596e-21,1.1333861355287096e-21)
    sum a = (-1.1036026243257358e-22,-4.8453671970722585e-23,-5.925179771190058e-23)
    sum e = 2.39880664991143e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2533057539176131 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0841e+04 | 1536 |      1 | 4.980e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90591.48913383578 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 769.8344226694594, dt = 1.2533057539176131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.8%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 281.73 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0958926924874566e-21,2.7421992313113382e-21,1.0118528628306552e-21)
    sum a = (-5.3963311448334156e-24,1.1245692188891022e-22,-8.489853134187973e-23)
    sum e = 2.3988186930304537e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2533164537143027 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0723e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90247.95780205877 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 771.087728423377, dt = 1.2533164537143027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.4%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 293.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.156839491299693e-21,2.983978527988854e-21,8.893765371897845e-22)
    sum a = (-5.999450508079503e-23,-1.4062569632531908e-22,1.3320254115124292e-22)
    sum e = 2.398830738257317e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2533274457204415 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0590e+04 | 1536 |      1 | 5.021e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89856.86245068116 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 772.3410448770913, dt = 1.2533274457204415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.6%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.3%)
   LB compute        : 282.54 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.051875560011953e-21,2.6491322358107516e-21,1.1929977692185402e-21)
    sum a = (3.079083064993184e-23,-3.0998515233553745e-23,-9.268785240636359e-24)
    sum e = 2.3988427722674565e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.25333878454394 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0270e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88918.36128038054 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 773.5943723228118, dt = 1.25333878454394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.5%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 281.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.141602791596634e-21,2.6789800466400928e-21,1.0920992293932842e-21)
    sum a = (3.14256931375593e-23,5.475695413942036e-24,4.3734654494342944e-23)
    sum e = 2.398854781814433e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.2533504928472443 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0900e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90768.37579083131 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 774.8477111073557, dt = 1.2533504928472443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.5%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 281.52 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1686902577354053e-21,2.708699572674774e-21,1.180129713525373e-21)
    sum a = (-3.5420036288882076e-23,-1.3936810622366292e-22,-3.395690676672508e-23)
    sum e = 2.398866753672547e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.253362567112138 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0946e+04 | 1536 |      1 | 4.964e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90903.72181073946 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 776.101061600203, dt = 0.6705701242539135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.3%)
   patch tree reduce : 1.03 us    (0.4%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 269.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1060504922894962e-21,2.524474625263563e-21,1.1086718480372153e-21)
    sum a = (-4.205963980531927e-23,2.279097819696578e-23,-4.244026483166473e-24)
    sum e = 2.3986400137738197e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2533692661554918 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1275e+04 | 1536 |      1 | 4.911e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49152.8664572324 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 654                                                     [SPH][rank=0]
Info: time since start : 141.52133227000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001049999 s
sph::RenderFieldGetter compute custom field took :  0.0009926520000000001 s
rho_t_ampl=-0.000959115, rho_t_phi=3.14159 rad
eps_t_ampl=-1.44559e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.93972e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 788.72s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 776.7716317244569, dt = 1.2533692661554918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.57 us    (2.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 336.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.033252927041547e-21,2.607409505045294e-21,1.1133148005902772e-21)
    sum a = (-4.1662850750552105e-23,1.613954334022368e-23,-3.0489941993106965e-23)
    sum e = 2.3988816803767885e-13
    sum de = 0
Info: cfl dt = 1.2533818075296579 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2948e+04 | 1536 |      1 | 6.693e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67410.95305986262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 778.0250009906124, dt = 1.2533818075296579 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 306.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9977006277344095e-21,2.6234691803803044e-21,1.0586513500523866e-21)
    sum a = (-4.21389976162727e-23,-1.0050077773499066e-22,4.559164463183048e-23)
    sum e = 2.398895105141672e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.253394792238901 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4367e+04 | 1536 |      1 | 6.303e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71582.06907276818 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 779.278382798142, dt = 1.253394792238901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 341.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.965534261694618e-21,2.424404683977492e-21,1.1634753182853618e-21)
    sum a = (3.5711014929044664e-24,1.4578897848202866e-23,-3.150400353582041e-23)
    sum e = 2.3989068532961847e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2534081305319764 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0516e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89644.58622141748 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 780.5317775903809, dt = 1.2534081305319764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 299.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9689201949619646e-21,2.514797105546565e-21,1.0756723021504159e-21)
    sum a = (1.4972173666547612e-23,1.1468317068725465e-22,-4.4057500056528335e-23)
    sum e = 2.398918489777068e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.2534218176044636 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1186e+04 | 1536 |      1 | 4.925e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91615.0542796979 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 781.7851857209129, dt = 1.2534218176044636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (1.5%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 264.80 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9909287611997165e-21,2.7212771398953743e-21,1.0125823430476141e-21)
    sum a = (-8.226759735505844e-23,-3.6288005888030053e-23,2.25261994344242e-24)
    sum e = 2.398930016414195e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2534358493976439 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0957e+04 | 1536 |      1 | 4.962e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90943.07301788114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 783.0386075385173, dt = 1.2534358493976439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 290.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8267109977334133e-21,2.581176349507447e-21,1.0444289150316866e-21)
    sum a = (-2.4468658377308377e-23,7.326866829446738e-23,-1.1811062966609155e-23)
    sum e = 2.398941420630685e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.253450221765516 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0445e+04 | 1536 |      1 | 5.045e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89438.13595866277 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 784.292043387915, dt = 1.253450221765516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (0.0%)
   patch tree reduce : 1.74 us    (0.0%)
   gen split merge   : 802.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.0%)
   LB compute        : 11.54 ms   (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (77.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8554914305058583e-21,2.7416782454741455e-21,1.0208103733699202e-21)
    sum a = (-3.25631550945585e-23,-7.393734568266061e-23,5.286343739324223e-23)
    sum e = 2.398952689886265e-13
    sum de = -3.155443620884047e-28
Info: cfl dt = 1.2534649304711822 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5067e+04 | 1536 |      1 | 6.127e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73642.49566869844 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 785.5454936096805, dt = 1.2534649304711822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.7%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 275.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.803009464861988e-21,2.556741893520016e-21,1.1276059716558264e-21)
    sum a = (-1.2572922515388835e-22,9.755197115971728e-23,-7.986479444875758e-23)
    sum e = 2.398963811791797e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2534799711882068 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0425e+04 | 1536 |      1 | 5.048e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89382.73773671126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 786.7989585401517, dt = 1.2534799711882068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.7%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 270.38 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5896956690191615e-21,2.786499082446519e-21,9.443119594625582e-22)
    sum a = (-1.658049196853718e-22,1.2182683321613614e-23,-4.0074200022611985e-23)
    sum e = 2.398974774124155e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.253495339502056 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0366e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89212.02645170238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 788.0524385113399, dt = 0.6695260088779378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 270.03 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4474864717906102e-21,2.741150020044987e-21,9.424195968398374e-22)
    sum a = (-7.142202985808932e-25,6.577308797306682e-23,-3.40211173304531e-23)
    sum e = 2.398684703923555e-13
    sum de = 1.135959703518257e-28
Info: cfl dt = 1.253503752164714 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0909e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48502.29831555088 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 664                                                     [SPH][rank=0]
Info: time since start : 142.376772114 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010250720000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008879560000000001 s
rho_t_ampl=-0.00108073, rho_t_phi=3.14159 rad
eps_t_ampl=-1.33758e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.56037e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 800.67s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 788.7219645202179, dt = 1.253503752164714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.00 us    (2.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 336.68 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4915036042661142e-21,2.8415425074337805e-21,9.018003467614419e-22)
    sum a = (-6.24281446167003e-24,-3.7041414272293354e-23,-2.479987178708554e-23)
    sum e = 2.3989882626878393e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2535195456908752 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1567e+04 | 1536 |      1 | 7.122e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63360.98134997253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 789.9754682723826, dt = 1.2535195456908752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.3%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 332.76 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.489810637632441e-21,2.7306664192300096e-21,8.76492655689832e-22)
    sum a = (-2.8039759870212843e-24,3.3424446961241815e-23,-6.026701753357879e-24)
    sum e = 2.399000180079236e-13
    sum de = -1.8932661725304283e-28
Info: cfl dt = 1.2535355924754286 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1474e+04 | 1536 |      1 | 7.153e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63090.514385571296 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 791.2289878180735, dt = 1.2535355924754286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.3%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 352.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5050473373355e-21,2.816735855046539e-21,8.8070423832265e-22)
    sum a = (1.9918810549311577e-23,-3.656380786350021e-23,-1.8362057369705206e-23)
    sum e = 2.3990105022529127e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2535516079272977 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2639e+04 | 1536 |      1 | 6.785e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66511.38155102394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 792.4825234105489, dt = 1.2535516079272977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.3%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.3%)
   LB compute        : 313.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.531288320157435e-21,2.7270370393446862e-21,8.499550481264964e-22)
    sum a = (-8.216178694045386e-23,-4.48591854978814e-23,-5.833825352623525e-23)
    sum e = 2.399020592637274e-13
    sum de = -2.9030081312133234e-28
Info: cfl dt = 1.2535679306521923 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2583e+04 | 1536 |      1 | 6.802e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66348.31570692042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 793.7360750184762, dt = 1.2535679306521923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 317.53 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3636846234237854e-21,2.6655954941797873e-21,7.51767971890343e-22)
    sum a = (4.5763004316479453e-23,4.291676616190615e-23,-6.5644323545094455e-25)
    sum e = 2.3990304592898983e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.2535845559110403 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3330e+04 | 1536 |      1 | 6.584e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68543.94984025949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 794.9896429491283, dt = 1.2535845559110403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 366.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5016614040681536e-21,2.774416442406927e-21,7.870990985698047e-22)
    sum a = (-5.473043695421733e-23,2.07802057464779e-23,-8.507882583102466e-23)
    sum e = 2.399040091478719e-13
    sum de = 1.3883951931889808e-28
Info: cfl dt = 1.2536014788894472 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3176e+04 | 1536 |      1 | 6.628e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68092.72626146817 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 796.2432275050394, dt = 1.2536014788894472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 311.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.382307256394191e-21,2.786591253237366e-21,6.275288591883199e-22)
    sum a = (-1.1197387125529337e-22,-5.611174593481514e-23,-1.3143027155935033e-24)
    sum e = 2.3990494786431336e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2536186946957102 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3397e+04 | 1536 |      1 | 6.565e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68742.14905087976 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 797.4968289839288, dt = 1.2536186946957102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (1.0%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.3%)
   LB compute        : 306.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2011598265911555e-21,2.6680508331171253e-21,6.783848897615595e-22)
    sum a = (-6.039129413556219e-23,3.3673847998302334e-23,3.768102465177033e-23)
    sum e = 2.3990586104967155e-13
    sum de = -2.9030081312133234e-28
Info: cfl dt = 1.2536361983623034 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3231e+04 | 1536 |      1 | 6.612e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68256.74066256396 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 798.7504476786245, dt = 1.2536361983623034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.3%)
   LB compute        : 309.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1410595110957558e-21,2.766552372666794e-21,7.500658219532361e-22)
    sum a = (-1.2424787934942426e-22,-1.9714041822757176e-23,-1.1147381414975192e-22)
    sum e = 2.3990674770363835e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2536539848474428 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3349e+04 | 1536 |      1 | 6.579e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68603.04236174058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 800.0040838769868, dt = 0.6682134389919838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.3%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.3%)
   LB compute        : 317.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0276307466396495e-21,2.719908062660703e-21,5.820845687014215e-22)
    sum a = (-8.464833168366142e-25,1.4077653945605145e-22,-8.746108531190563e-23)
    sum e = 2.3987222121428675e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2536636293136814 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3718e+04 | 1536 |      1 | 6.476e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37144.73863047608 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 674                                                     [SPH][rank=0]
Info: time since start : 143.362705978 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000894689 s
sph::RenderFieldGetter compute custom field took :  0.0008160730000000001 s
rho_t_ampl=-0.00117466, rho_t_phi=3.14159 rad
eps_t_ampl=-1.21883e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-1.1428e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 812.62s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 800.6722973159788, dt = 1.2536636293136814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.76 us    (2.1%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 386.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0623365626299508e-21,2.9500183318476593e-21,4.804606011237249e-22)
    sum a = (6.084098839763164e-24,6.762302006859089e-24,5.541674355978086e-23)
    sum e = 2.3990781970878774e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.2536817920666623 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1671e+04 | 1536 |      1 | 7.088e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63676.8058412317 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 801.9259609452924, dt = 1.2536817920666623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.2%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 347.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0758802956993365e-21,2.8744947017968802e-21,6.394959322460662e-22)
    sum a = (2.967982129658378e-23,2.7877853919642976e-24,5.06767480292523e-23)
    sum e = 2.3990874192033476e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.2537002708765836 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2201e+04 | 1536 |      1 | 6.919e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65232.336467141606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 803.1796427373591, dt = 1.2537002708765836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 294.28 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1198974281748405e-21,2.8755038272939782e-21,7.000581619319868e-22)
    sum a = (8.988594720658797e-23,7.657680016626078e-23,-2.518501577364689e-23)
    sum e = 2.399095295467371e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.2537190151444342 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1543e+04 | 1536 |      1 | 7.130e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63302.54392706973 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 804.4333430082357, dt = 1.2537190151444342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 291.04 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2688784919380846e-21,3.0177655164078996e-21,6.209292718454012e-22)
    sum a = (-8.411927961063854e-23,3.8880432085549254e-23,6.141743095551414e-23)
    sum e = 2.399102842201663e-13
    sum de = -2.398137151871876e-28
Info: cfl dt = 1.253738018490607 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1327e+04 | 1536 |      1 | 7.202e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62667.34638876255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 805.6870620233801, dt = 1.253738018490607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 334.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0775732623330098e-21,3.0428857768110836e-21,7.522182071435761e-22)
    sum a = (5.69260030572623e-23,5.609644010701895e-23,-5.1725077373407656e-23)
    sum e = 2.3991100738096684e-13
    sum de = -6.310887241768094e-29
Info: cfl dt = 1.253757275489493 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1056e+04 | 1536 |      1 | 7.295e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61871.150429829846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 806.9408000418707, dt = 1.253757275489493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 307.52 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.23501915926462e-21,3.1239931795028803e-21,6.164419829616724e-22)
    sum a = (4.7297255328245814e-23,4.208967022694471e-24,-1.868556619824833e-23)
    sum e = 2.399116982452837e-13
    sum de = -1.6408306828597046e-28
Info: cfl dt = 1.2537767806536404 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3549e+04 | 1536 |      1 | 6.523e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69198.92944369036 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 808.1945573173602, dt = 1.2537767806536404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 332.65 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2739573918391044e-21,3.096756090824707e-21,6.137262176861245e-22)
    sum a = (1.1559787795550013e-22,2.048450619487269e-23,-8.40595128171153e-25)
    sum e = 2.3991235605882604e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2537965284339219 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5360e+04 | 1536 |      1 | 6.057e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74521.72201703241 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 809.4483340980139, dt = 1.2537965284339219 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.3%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 339.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4694950380283621e-21,3.132624788070828e-21,6.238590876222464e-22)
    sum a = (-3.761560239192704e-23,-2.5844232516099007e-23,-4.5002424355649004e-23)
    sum e = 2.3991298010424256e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2538165132210954 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9547e+04 | 1536 |      1 | 5.198e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86827.72380613605 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 810.7021306264478, dt = 1.2538165132210954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 294.48 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3255928741661378e-21,3.0711803496524047e-21,5.397493307428395e-22)
    sum a = (2.997079993674637e-23,3.0099730546924945e-23,3.7790188494425673e-23)
    sum e = 2.399135697012561e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.2538367293473314 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9938e+04 | 1536 |      1 | 5.131e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87976.08299363802 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 811.9559471396689, dt = 0.6666829720707028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 286.62 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3818840147357727e-21,3.1263340282650403e-21,6.1684677850549e-22)
    sum a = (-6.160811390351483e-23,-1.1844376091153809e-22,-3.923367383729271e-23)
    sum e = 2.3987488316049157e-13
    sum de = 1.8932661725304283e-28
Info: cfl dt = 1.253847599953897 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0643e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47881.1789664827 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 684                                                     [SPH][rank=0]
Info: time since start : 144.47402289200002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008620780000000001 s
sph::RenderFieldGetter compute custom field took :  0.000787479 s
rho_t_ampl=-0.0012386, rho_t_phi=3.14159 rad
eps_t_ampl=-1.09231e-05, eps_t_phi=6.28319 rad
vx_t_ampl=-6.97523e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 824.57s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 812.6226301117396, dt = 1.253847599953897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.63 us    (2.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 343.08 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2764968417896142e-21,2.928318310432182e-21,5.4197848199731575e-22)
    sum a = (-2.970627390023493e-23,4.891100623037975e-23,2.078112921022883e-23)
    sum e = 2.399142602759392e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2538681331709873 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2027e+04 | 1536 |      1 | 6.973e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64731.10038913978 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 813.8764777116935, dt = 1.2538681331709873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 299.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2671855253044114e-21,3.094571684413827e-21,6.056599860667474e-22)
    sum a = (3.1981197814233327e-23,6.736554633754504e-23,4.1722908545609157e-23)
    sum e = 2.399148212103873e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.2538889081977969 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2221e+04 | 1536 |      1 | 6.912e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65301.39943787721 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 815.1303458448645, dt = 1.2538889081977969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 314.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3387133655771053e-21,3.190598768886801e-21,6.711049931900789e-22)
    sum a = (-3.338318580774397e-23,1.8561047356714674e-22,6.094295147070172e-23)
    sum e = 2.399152868254832e-13
    sum de = -6.941975965944904e-29
Info: cfl dt = 1.2539098951804437 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1016e+04 | 1536 |      1 | 7.309e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61763.05848789242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 816.3842347530623, dt = 1.2539098951804437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 313.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2599904171113002e-21,3.497492783364871e-21,7.595718624001809e-22)
    sum a = (2.3860248493332062e-23,6.142904217645454e-23,7.043824159448187e-23)
    sum e = 2.399157128405778e-13
    sum de = 4.417621069237666e-29
Info: cfl dt = 1.2539310871299703 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3620e+04 | 1536 |      1 | 6.503e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69415.70535931163 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 817.6381446482427, dt = 1.2539310871299703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 320.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3243231491908828e-21,3.4966493999625244e-21,8.538496823801697e-22)
    sum a = (-1.140900795473849e-22,-1.17029134308324e-23,-5.2482641691742053e-23)
    sum e = 2.399161013467759e-13
    sum de = 1.3252863207712998e-28
Info: cfl dt = 1.2539524780852396 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3808e+04 | 1536 |      1 | 6.452e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69970.274386124 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 818.8920757353727, dt = 1.2539524780852396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 314.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0987353452539251e-21,3.436117163048134e-21,7.109717853693243e-22)
    sum a = (-2.846300152863115e-23,-4.148884867531461e-23,3.329592254164585e-23)
    sum e = 2.3991645192676247e-13
    sum de = -8.204153414298523e-29
Info: cfl dt = 1.2539740620356523 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3727e+04 | 1536 |      1 | 6.474e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69732.80915230633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 820.146028213458, dt = 1.2539740620356523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 322.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1131255616401476e-21,3.365423819756247e-21,8.065051302015746e-22)
    sum a = (2.277569174363515e-23,-8.997886714343677e-23,2.2991368672956424e-23)
    sum e = 2.3991676420222057e-13
    sum de = 3.1554436208840472e-30
Info: cfl dt = 1.2539958329333227 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4445e+04 | 1536 |      1 | 6.283e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71844.91501905293 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 821.4000022754936, dt = 1.2539958329333227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 322.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.175553706256848e-21,3.22217677115632e-21,8.288753890748711e-22)
    sum a = (2.555321512700529e-23,-1.6350205133387377e-22,3.920677281276738e-23)
    sum e = 2.399170378370979e-13
    sum de = -9.466330862652142e-30
Info: cfl dt = 1.2540173312580103 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3839e+04 | 1536 |      1 | 6.443e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70063.74851612176 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 822.653998108427, dt = 1.2540173312580103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.30 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2047573806877112e-21,2.971049391716115e-21,8.882083862950552e-22)
    sum a = (-2.4812542224773253e-23,-6.373204614921153e-24,-2.3336707163751858e-23)
    sum e = 2.3991727249642357e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.254038662144036 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3468e+04 | 1536 |      1 | 6.545e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68975.94132934768 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 823.908015439685, dt = 0.6649474678154093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 320.11 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1601053857245796e-21,3.065327917755555e-21,8.334753980355032e-22)
    sum a = (1.86755381777078e-23,7.478324130737509e-23,3.1316570644640466e-24)
    sum e = 2.398761970020403e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.2540500497154716 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3119e+04 | 1536 |      1 | 6.644e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36030.01064588013 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 694                                                     [SPH][rank=0]
Info: time since start : 145.45765301600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001061841 s
sph::RenderFieldGetter compute custom field took :  0.0009747690000000001 s
rho_t_ampl=-0.00127102, rho_t_phi=3.14159 rad
eps_t_ampl=-9.61211e-06, eps_t_phi=6.28319 rad
vx_t_ampl=-2.35709e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 836.52s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 824.5729629075004, dt = 1.2540500497154716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 344.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.199043618299064e-21,3.186089839930077e-21,8.4620268861829e-22)
    sum a = (5.74021499229829e-23,1.3594217760123552e-22,4.0418305442664637e-23)
    sum e = 2.399175154527921e-13
    sum de = -3.1554436208840472e-30
Info: cfl dt = 1.2540716336978048 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1436e+04 | 1536 |      1 | 4.886e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92396.74136788255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 825.8270129572159, dt = 1.2540716336978048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 291.76 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2941671810285785e-21,3.3949188861492044e-21,9.20269800582261e-22)
    sum a = (3.7959486239391915e-23,9.841014373744467e-24,-6.508164382650386e-23)
    sum e = 2.399176592187245e-13
    sum de = 1.262177448353619e-29
Info: cfl dt = 1.2540909412632537 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1568e+04 | 1536 |      1 | 4.866e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92785.53482710726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 827.0810845909136, dt = 1.2540909412632537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 289.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3284497553604613e-21,3.3281938467269216e-21,7.724992537493461e-22)
    sum a = (-6.732187629216197e-23,1.0270269866274088e-22,1.1727113319283531e-23)
    sum e = 2.3991775718363207e-13
    sum de = 2.3665827156630354e-30
Info: cfl dt = 1.254100137609226 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1194e+04 | 1536 |      1 | 4.924e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91686.5420205647 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 828.3351755321769, dt = 1.254100137609226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 308.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1784634926584738e-21,3.515207554711531e-21,8.353688114500581e-22)
    sum a = (-1.2274008094130906e-22,-3.656310392458469e-24,2.306441736398628e-23)
    sum e = 2.399178117486043e-13
    sum de = -6.7053176943786e-30
Info: cfl dt = 1.2540990006991628 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0804e+04 | 1536 |      1 | 4.986e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90542.72474364145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 829.5892756697862, dt = 1.2540990006991628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.5%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 273.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.89707632730278e-22,3.443917787871697e-21,8.714029314991487e-22)
    sum a = (-8.70290660122644e-23,-8.876435939504153e-23,3.6415804296204703e-23)
    sum e = 2.3991782557415554e-13
    sum de = -7.888609052210118e-31
Info: cfl dt = 1.2540977345518873 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9368e+04 | 1536 |      1 | 5.230e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86321.69716881077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 830.8433746704853, dt = 1.2540977345518873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 307.48 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.028802678208536e-22,3.2792275974370614e-21,9.254438896737586e-22)
    sum a = (-6.938517937695122e-23,-2.3456943159979938e-23,3.586788100602005e-23)
    sum e = 2.399177995950779e-13
    sum de = -1.0255191767873153e-29
Info: cfl dt = 1.25409587979514 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0124e+04 | 1536 |      1 | 5.099e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88541.96269326535 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 832.0974724050373, dt = 1.25409587979514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.2%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 352.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.280723046954178e-22,3.2907439864297462e-21,9.700820767819101e-22)
    sum a = (-3.6425235227625553e-23,1.0447241401267148e-23,2.064500168433189e-23)
    sum e = 2.3991773378214193e-13
    sum de = -9.466330862652142e-30
Info: cfl dt = 1.2540904547287959 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0715e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90280.15698440824 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 833.3515682848324, dt = 1.2540904547287959 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.3%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 320.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.0564049679924755e-22,3.32511542497702e-21,9.864273012141512e-22)
    sum a = (4.5763004316479455e-24,2.5145821781418992e-23,3.1225404126297447e-24)
    sum e = 2.3991762796347657e-13
    sum de = 1.5777218104420236e-30
Info: cfl dt = 1.2540749878334914 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0494e+04 | 1536 |      1 | 5.037e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89629.17031307168 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 834.6056587395612, dt = 1.2540749878334914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 313.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.367487586929931e-22,3.3658673141893358e-21,9.793558253319268e-22)
    sum a = (-3.9784715891320865e-23,6.0874441641506866e-24,-4.618506524218963e-23)
    sum e = 2.3991748168714674e-13
    sum de = 1.8932661725304283e-29
Info: cfl dt = 1.254053323562702 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3592e+04 | 1536 |      1 | 6.511e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69342.46718261186 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 835.8597337273948, dt = 0.6635619758665143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 345.15 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.821505847570315e-22,3.357955919087983e-21,9.177914547035266e-22)
    sum a = (-6.163456650716597e-24,1.5762363827870173e-22,9.611381690378884e-24)
    sum e = 2.398760672502279e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.2540419492241228 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3725e+04 | 1536 |      1 | 6.474e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36898.228403561436 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 704                                                     [SPH][rank=0]
Info: time since start : 146.307209921 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001067582 s
sph::RenderFieldGetter compute custom field took :  0.00096489 s
rho_t_ampl=-0.00127118, rho_t_phi=3.14159 rad
eps_t_ampl=-8.28811e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.31071e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 848.47s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 836.5232957032613, dt = 1.2540419492241228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.30 us    (2.3%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 343.88 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.863830013412146e-22,3.605886666705721e-21,9.483567308197457e-22)
    sum a = (2.2881502158239727e-23,6.608220757115325e-23,-6.507085984607074e-23)
    sum e = 2.399172496605229e-13
    sum de = -4.1020767071492614e-29
Info: cfl dt = 1.2540203495497653 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1429e+04 | 1536 |      1 | 4.887e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92375.4993521581 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 837.7773376524854, dt = 1.2540203495497653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 325.86 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.282839255246269e-22,3.6313696171042774e-21,8.19929216535674e-22)
    sum a = (1.9918810549311577e-23,-5.981732559320491e-23,1.2565852067479833e-24)
    sum e = 2.3991695801188477e-13
    sum de = 3.470987982972452e-29
Info: cfl dt = 1.253998403158005 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1707e+04 | 1536 |      1 | 4.844e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93190.56768345732 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 839.0313580020352, dt = 1.253998403158005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.3%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 310.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.524087000544704e-22,3.477428276834512e-21,8.630929552932517e-22)
    sum a = (6.211071337288656e-23,-1.2107358628575253e-22,4.805214107565392e-23)
    sum e = 2.399166760843056e-13
    sum de = -1.4515040656066617e-28
Info: cfl dt = 1.2539766592483659 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1910e+04 | 1536 |      1 | 4.814e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93784.97090954144 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 840.2853564051932, dt = 1.2539766592483659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 273.67 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.535634564164458e-22,3.2871679250736573e-21,9.52689994796271e-22)
    sum a = (-2.8965600998002894e-23,-1.6327126915822102e-23,-1.1006934977720642e-23)
    sum e = 2.3991635303714484e-13
    sum de = 6.310887241768095e-30
Info: cfl dt = 1.2539551247134073 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1777e+04 | 1536 |      1 | 4.834e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93392.90558805942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 841.5393330644415, dt = 1.2539551247134073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.5%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 278.34 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.651059498070196e-22,3.332358891836181e-21,9.01858440829785e-22)
    sum a = (-7.967524219724631e-23,6.904905823202264e-23,6.099308645643988e-23)
    sum e = 2.3991599200055613e-13
    sum de = 0
Info: cfl dt = 1.2539338052674307 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5944e+04 | 1536 |      1 | 5.920e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76249.68342544041 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 842.793288189155, dt = 1.2539338052674307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 318.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.343242773557628e-22,3.472487426458797e-21,1.0234821317535006e-21)
    sum a = (-3.2272176454395914e-24,-2.1201090178252492e-23,-2.1363791268678221e-23)
    sum e = 2.399155933842005e-13
    sum de = -6.941975965944904e-29
Info: cfl dt = 1.2539127065653402 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0915e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90857.24278197871 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 844.0472219944224, dt = 1.2539127065653402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 29.26 us   (8.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 287.45 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.78764651489685e-22,3.389310934175162e-21,9.450587658834436e-22)
    sum a = (-2.946820046737463e-23,1.5221253087479755e-22,2.546246002899986e-23)
    sum e = 2.3991515764392306e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2538918341903715 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5772e+04 | 1536 |      1 | 5.960e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75741.5071605024 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 845.3011347009877, dt = 1.2538918341903715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 309.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.3220806906367125e-22,3.688882950626982e-21,1.006343952343628e-21)
    sum a = (-1.1903671643014886e-24,-1.1343033378781706e-22,2.795886764200019e-23)
    sum e = 2.399146852748248e-13
    sum de = 1.3883951931889808e-28
Info: cfl dt = 1.253871193654187 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0269e+04 | 1536 |      1 | 5.075e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88954.39133603875 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 846.5550265351782, dt = 1.253871193654187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 306.86 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.368637273062726e-22,3.3801256808792345e-21,1.0429658836475143e-21)
    sum a = (3.105535668644328e-23,8.984856094620308e-23,7.880538270595277e-23)
    sum e = 2.399141768122244e-13
    sum de = 2.6505726415425997e-28
Info: cfl dt = 1.2538507903964082 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0089e+04 | 1536 |      1 | 5.105e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88423.59537518625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 847.8088977288323, dt = 0.6647307701898626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 300.50 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.829970680738681e-22,3.567287358115517e-21,1.1272277366570024e-21)
    sum a = (-9.253120757170239e-23,5.355589872828229e-23,4.695169129326455e-23)
    sum e = 2.3987461752705285e-13
    sum de = 1.3252863207712998e-28
Info: cfl dt = 1.2538401069594367 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1915e+04 | 1536 |      1 | 4.813e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49721.73789146857 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 714                                                     [SPH][rank=0]
Info: time since start : 147.13769034700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001070086 s
sph::RenderFieldGetter compute custom field took :  0.000906812 s
rho_t_ampl=-0.00123912, rho_t_phi=3.14159 rad
eps_t_ampl=-6.98424e-06, eps_t_phi=6.28319 rad
vx_t_ampl=6.91147e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 860.42s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 848.4736284990222, dt = 1.2538401069594367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.78 us    (2.2%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 377.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.196257879244016e-22,3.622384824945394e-21,1.1755105858769498e-21)
    sum a = (-7.644802455180672e-24,2.2582483114867747e-23,-1.3880706708473593e-24)
    sum e = 2.399135004566362e-13
    sum de = -6.941975965944904e-29
Info: cfl dt = 1.2538200390018555 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0430e+04 | 1536 |      1 | 5.048e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89424.69423804159 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 849.7274686059816, dt = 1.2538200390018555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 287.41 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.729542368851083e-22,3.631292325902984e-21,1.1434650288985376e-21)
    sum a = (-4.044603098259947e-23,-4.8831118850700887e-23,-8.264538328791332e-23)
    sum e = 2.399128073115858e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2538002609627237 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0695e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90200.47948377312 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 850.9812886449835, dt = 1.2538002609627237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 297.38 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.925383217856299e-22,3.5252880633122766e-21,9.88903202327443e-22)
    sum a = (1.0898472704271407e-23,-7.44042961353931e-23,1.4065763148333648e-24)
    sum e = 2.399121789175092e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.253780737743511 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0478e+04 | 1536 |      1 | 5.040e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89563.07017210571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 852.2350889059462, dt = 1.253780737743511 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1.57 us    (0.3%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 433.44 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.424808374789902e-22,3.415978878552904e-21,1.0433589250593434e-21)
    sum a = (-1.4972173666547612e-23,6.030505838933325e-23,-5.313220862750651e-23)
    sum e = 2.399115146990646e-13
    sum de = -1.135959703518257e-28
Info: cfl dt = 1.2537614755076962 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9256e+04 | 1536 |      1 | 5.250e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85970.26124484095 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 853.4888696436897, dt = 1.2537614755076962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.4%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 305.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.086215048055256e-22,3.576012170779142e-21,9.425539697632165e-22)
    sum a = (-6.904129552948634e-24,1.9233176628856031e-22,-7.911018987010609e-23)
    sum e = 2.3991081804751455e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.2537424792689424 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9858e+04 | 1536 |      1 | 5.144e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87736.60869120603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 854.7426311191973, dt = 1.2537424792689424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 315.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.07775021488689e-22,3.899908182932052e-21,8.270850681333309e-22)
    sum a = (1.5501225739570498e-23,1.0756588972231724e-22,-1.3074192355460368e-23)
    sum e = 2.3991008973481875e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2537237539643533 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9964e+04 | 1536 |      1 | 5.126e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88048.52600924762 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 855.9963735984662, dt = 1.2537237539643533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 290.08 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.627964370830689e-22,3.981627715405214e-21,8.520897102358144e-22)
    sum a = (4.2853217914853593e-23,-1.5819408712648141e-22,-1.0457676346420735e-22)
    sum e = 2.399093305751885e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.2537053044498598 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9521e+04 | 1536 |      1 | 5.203e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86745.47541852895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 857.2500973524305, dt = 1.2537053044498598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 304.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.076600528754095e-22,3.616724794407913e-21,6.6362179368463015e-22)
    sum a = (-6.69250872373948e-24,2.2300113195571122e-23,-1.2053924439747737e-23)
    sum e = 2.3990854141617534e-13
    sum de = 2.6505726415425997e-28
Info: cfl dt = 1.2536871354991939 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9991e+04 | 1536 |      1 | 5.122e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88123.43664444868 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 858.5038026568805, dt = 1.2536871354991939 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.4%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 280.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.636429203999055e-22,3.75780975598129e-21,7.065081307160872e-22)
    sum a = (-5.3963311448334156e-24,7.56688610446526e-23,-2.887697077530521e-24)
    sum e = 2.39907723137649e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2536692518028931 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0265e+04 | 1536 |      1 | 5.075e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88929.31786930114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 859.7574897923796, dt = 0.6664715024035104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.4%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 297.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.695683036177619e-22,3.8417132815433994e-21,7.103293535689175e-22)
    sum a = (-1.7432265806104022e-23,-7.368106671032459e-23,6.623390025970454e-24)
    sum e = 2.398718957210707e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.253659917287599 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0187e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47153.5076928052 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 724                                                     [SPH][rank=0]
Info: time since start : 147.966393043 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008621190000000001 s
sph::RenderFieldGetter compute custom field took :  0.000787439 s
rho_t_ampl=-0.00117573, rho_t_phi=3.14159 rad
eps_t_ampl=-5.733e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.13304e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 872.37s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 860.4239612947831, dt = 1.253659917287599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.64 us    (2.2%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 363.75 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.306300710432775e-22,3.699574349043297e-21,7.218022664167401e-22)
    sum a = (3.0129515558653234e-23,3.4366969503883154e-23,-3.4348968004061375e-23)
    sum e = 2.399066700447903e-13
    sum de = -3.9127500898962186e-28
Info: cfl dt = 1.2536424216657918 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3755e+04 | 1536 |      1 | 6.466e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69798.44734945042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 861.6776212120707, dt = 1.2536424216657918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 305.81 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.093530195090826e-22,3.810384305737939e-21,6.530582414969124e-22)
    sum a = (-3.399159569172029e-23,-1.6744332782401455e-22,-1.051947935442357e-23)
    sum e = 2.399056450402884e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2536252815363294 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3305e+04 | 1536 |      1 | 6.591e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68475.85977460444 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 862.9312636337364, dt = 1.2536252815363294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 311.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.289371044096043e-22,3.473974972092241e-21,6.548075851585362e-22)
    sum a = (1.798777048277805e-23,6.35301513017159e-23,1.8831933926294502e-23)
    sum e = 2.3990473380566697e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.25360844154374 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3951e+04 | 1536 |      1 | 6.413e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70371.86288620524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 864.1848889152727, dt = 1.25360844154374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 299.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.797261034198012e-22,3.698396381536957e-21,6.968132933678228e-22)
    sum a = (1.2961775789060655e-24,-1.898907773720508e-22,-1.1443438525977007e-22)
    sum e = 2.399037954222559e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.2535919069973647 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3746e+04 | 1536 |      1 | 6.469e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69768.68500431335 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 865.4384973568165, dt = 1.2535919069973647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 298.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.704147869345984e-22,3.301519289198267e-21,4.698273827713898e-22)
    sum a = (-1.539541532496592e-23,1.5535815618758857e-23,-7.668185782746019e-23)
    sum e = 2.3990283333848805e-13
    sum de = 2.145701662201152e-28
Info: cfl dt = 1.2535756821060018 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3813e+04 | 1536 |      1 | 6.450e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69965.4992588553 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 866.6920892638138, dt = 1.2535756821060018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 304.26 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.399413875284803e-22,3.4497534802302984e-21,3.9736400196906325e-22)
    sum a = (-4.512814182885199e-23,5.287490563814503e-23,-4.0834577757449696e-23)
    sum e = 2.3990184861096435e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.2535597709940494 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3919e+04 | 1536 |      1 | 6.422e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70275.64036818508 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 867.9456649459198, dt = 1.2535597709940494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 332.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.603719557458386e-22,3.5394195401690366e-21,3.686440573095494e-22)
    sum a = (-2.9626916089281496e-24,1.1197819176111432e-22,-7.44810016144151e-23)
    sum e = 2.399008423308437e-13
    sum de = 3.660314600225495e-28
Info: cfl dt = 1.253544177695973 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3765e+04 | 1536 |      1 | 6.463e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69821.82182632864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 869.1992247169138, dt = 1.253544177695973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.3%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 346.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.925383217856299e-22,3.7168230999115705e-21,2.541899296943633e-22)
    sum a = (2.195566103044968e-23,-2.4495369307167052e-23,2.665820365405581e-23)
    sum e = 2.3989981561232164e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.2535289061555817 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3736e+04 | 1536 |      1 | 6.471e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69736.03246904873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 870.4527688946098, dt = 1.2535289061555817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 299.81 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.263976544590944e-22,3.60059779926322e-21,3.509979895114088e-22)
    sum a = (-3.5314225874277497e-23,2.8281721112496477e-23,6.874089993486992e-23)
    sum e = 2.398987695914161e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.2535139602253191 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0252e+04 | 1536 |      1 | 5.077e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88879.14224368619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 871.7062978007654, dt = 0.6679962897786709 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 295.63 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.739156888152244e-22,3.652556086019184e-21,4.2329259374250012e-22)
    sum a = (-5.078899901019685e-24,1.512251629025289e-22,3.900290055410685e-24)
    sum e = 2.3986813956468204e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.253506158145127 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0604e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47914.56979226255 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 734                                                     [SPH][rank=0]
Info: time since start : 148.90432756500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001096526 s
sph::RenderFieldGetter compute custom field took :  0.0009853280000000002 s
rho_t_ampl=-0.00108264, rho_t_phi=3.14159 rad
eps_t_ampl=-4.56557e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.54574e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 884.32s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 872.374294090544, dt = 1.253506158145127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.83 us    (2.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 344.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (87.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.671438222805315e-22,3.883177737766568e-21,4.065249879323526e-22)
    sum a = (3.5711014929044664e-24,3.819763717011447e-23,-8.230139264172688e-23)
    sum e = 2.3989744484792874e-13
    sum de = -2.9030081312133234e-28
Info: cfl dt = 1.2534912171821062 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0390e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89282.48030605378 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 873.6278002486891, dt = 1.2534912171821062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 294.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.925383217856299e-22,3.860210677968394e-21,2.4933374504237847e-22)
    sum a = (2.039495741503217e-23,-3.657860349703653e-23,1.8421344558933175e-23)
    sum e = 2.398961899117553e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.253476689707414 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0500e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89606.49478396995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 874.8812914658713, dt = 1.253476689707414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 285.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.280906210927677e-22,3.767485622410561e-21,3.355520042658986e-22)
    sum a = (-3.399159569172029e-23,-5.840031593072635e-23,-4.84354394384982e-24)
    sum e = 2.398950871036407e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.253462500565557 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0086e+04 | 1536 |      1 | 5.105e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88387.72535477806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 876.1347681555787, dt = 1.253462500565557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 315.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.434422894091063e-22,3.680605352293834e-21,3.1489980584890505e-22)
    sum a = (-2.8727527565142594e-23,-1.4419214148833282e-22,2.7989973336334334e-23)
    sum e = 2.3989396832860663e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.253448654224761 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0504e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89614.55121302315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 877.3882306561443, dt = 1.253448654224761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 285.27 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.028110902009488e-22,3.4460778082885855e-21,3.705615915953275e-22)
    sum a = (1.1110093533480561e-23,-6.82942419699283e-23,-7.673705086416483e-23)
    sum e = 2.398928368875596e-13
    sum de = -3.534096855390133e-28
Info: cfl dt = 1.2534351541122801 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0708e+04 | 1536 |      1 | 5.002e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90213.2263974949 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 878.641679310369, dt = 1.2534351541122801 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 274.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.451352560427795e-22,3.40803689762858e-21,2.0874170064685074e-22)
    sum a = (-4.084282003736663e-23,-3.602410629257187e-23,-2.7750166605049455e-23)
    sum e = 2.398916940159948e-13
    sum de = 0
Info: cfl dt = 1.2534220035649966 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0453e+04 | 1536 |      1 | 5.044e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89463.67936451148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 879.8951144644813, dt = 1.2534220035649966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 305.34 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.824954905968701e-22,3.383111931838289e-21,2.0465997263185565e-22)
    sum a = (1.2009482057619464e-23,7.744587410994595e-24,-4.003243252336142e-23)
    sum e = 2.3989054097307437e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.2534092058231143 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8997e+04 | 1536 |      1 | 5.297e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85185.75898387049 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 881.1485364680462, dt = 1.2534092058231143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 286.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.248196564387008e-22,3.420291066269972e-21,1.4678552199768823e-22)
    sum a = (1.115770822005262e-22,5.536807644857575e-23,-3.562605730361786e-23)
    sum e = 2.3988937902842284e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.2533967640297115 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0528e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89682.61472922361 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 882.4019456738694, dt = 1.2533967640297115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.7%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 280.90 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.19510819311122e-22,3.519500729619725e-21,1.0489343269052254e-22)
    sum a = (7.525765738750522e-23,-2.8629324857349796e-24,2.146383463270443e-23)
    sum e = 2.398882094608735e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.2533846812302414 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0623e+04 | 1536 |      1 | 5.016e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89960.5615174287 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 883.6553424378991, dt = 0.6692844484056195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 325.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.516771853509134e-22,3.481103948776225e-21,1.5503698631928166e-22)
    sum a = (-6.613150912786048e-23,-1.679261039860359e-22,1.3243497409900585e-23)
    sum e = 2.3986372881522793e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.253378467951464 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9942e+04 | 1536 |      1 | 5.130e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46968.806529145455 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 744                                                     [SPH][rank=0]
Info: time since start : 149.728721304 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010600870000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009572360000000001 s
rho_t_ampl=-0.000962243, rho_t_phi=3.14159 rad
eps_t_ampl=-3.51094e-06, eps_t_phi=6.28319 rad
vx_t_ampl=1.919e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 896.27s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 884.3246268863047, dt = 1.253378467951464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.09 us    (2.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 324.45 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.162398546570551e-22,3.2153734921547916e-21,1.6888522888133545e-22)
    sum a = (-8.250567078791873e-23,1.0641097137184416e-22,5.1269364563973016e-23)
    sum e = 2.3988674504627673e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.2533668486204246 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0389e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89271.14053476612 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 885.5780053542562, dt = 1.2533668486204246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 291.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.129688900029882e-22,3.520731602333367e-21,2.569749523337168e-22)
    sum a = (-1.3490827862083539e-24,4.2752435174063084e-23,2.3470333400226582e-23)
    sum e = 2.398853843677477e-13
    sum de = -4.291403324402304e-28
Info: cfl dt = 1.253355689317365 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0739e+04 | 1536 |      1 | 4.997e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90299.39924554645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 886.8313722028767, dt = 1.253355689317365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 316.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.434422894091063e-22,3.5344323977369314e-21,2.689704361887752e-22)
    sum a = (4.4440374133922246e-24,-9.528536534960138e-23,6.03882089063735e-23)
    sum e = 2.3988419984202025e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.253344898151083 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0771e+04 | 1536 |      1 | 4.992e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90390.97167244181 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 888.084727892194, dt = 1.253344898151083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (0.9%)
   patch tree reduce : 1.39 us    (0.2%)
   gen split merge   : 1.16 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 548.90 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.756086554488976e-22,3.328481518791628e-21,3.6779330438163917e-22)
    sum a = (-1.931040066533526e-23,2.2114964344478678e-23,2.7012527716160285e-23)
    sum e = 2.3988301191935774e-13
    sum de = -5.553580772755923e-28
Info: cfl dt = 1.2533344785567542 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0631e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89980.40418266019 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 889.3380727903451, dt = 1.2533344785567542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.4%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 320.12 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.332844896070669e-22,3.42976275166481e-21,3.807334168502097e-22)
    sum a = (1.2750154959851501e-23,-5.503415107641119e-23,-7.062846122026536e-24)
    sum e = 2.3988182356395526e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2533244330255002 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0385e+04 | 1536 |      1 | 5.055e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89256.08058084437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 890.5914072689019, dt = 1.2533244330255002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.29 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.468282226764528e-22,3.312445454471986e-21,3.5052745878832063e-22)
    sum a = (6.073517798302707e-23,3.932038099143961e-24,-3.929228752470435e-23)
    sum e = 2.398806360671936e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.253314763954751 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0672e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90099.48873152919 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 891.8447317019273, dt = 1.253314763954751 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 283.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.433273207958268e-22,3.354303393174465e-21,2.810848815377676e-22)
    sum a = (1.1744956021108022e-23,6.655861276308137e-23,1.2747020252234517e-24)
    sum e = 2.398794507314207e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2533054736413884 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0697e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90170.97165631967 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 893.0980464658821, dt = 1.2533054736413884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 310.91 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.500991873305197e-22,3.4769823024698305e-21,3.0810407602918925e-22)
    sum a = (2.6452603651144194e-23,-5.227985444817565e-23,-3.94145753103838e-23)
    sum e = 2.3987826885569357e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2532965642815221 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0828e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90555.37620692505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 894.3513519395235, dt = 1.2532965642815221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 284.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.822655533703111e-22,3.3369909907286555e-21,2.3320787720859435e-22)
    sum a = (2.354281724951833e-23,2.8173262854264716e-23,5.348936101143889e-23)
    sum e = 2.3987709173475894e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.253288037970213 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0763e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90363.87289398591 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 895.604648503805, dt = 0.6703111782605902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 289.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.178178526774488e-22,3.406283585992827e-21,3.2728048591259257e-22)
    sum a = (-1.8252296519289492e-23,8.951216210060141e-24,-1.0045148887675734e-23)
    sum e = 2.3985910971930736e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.2532837402775816 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0351e+04 | 1536 |      1 | 5.061e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47683.161236025946 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 754                                                     [SPH][rank=0]
Info: time since start : 150.548848273 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010310130000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008974940000000001 s
rho_t_ampl=-0.000817597, rho_t_phi=3.14159 rad
eps_t_ampl=-2.59522e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.24357e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 908.23s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 896.2749596820656, dt = 1.2532837402775816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.81 us    (2.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 364.81 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.771866534692914e-22,3.411070680609821e-21,2.933971180476659e-22)
    sum a = (-1.6506424678313976e-23,-6.387398025486168e-23,-8.55439046069181e-23)
    sum e = 2.3987563337664247e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2532756991613778 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0270e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88914.60346536491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 897.5282434223432, dt = 1.2532756991613778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 315.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.247046878254213e-22,3.285380307717545e-21,1.388763397154199e-22)
    sum a = (-2.0103978774869586e-24,-2.3460388585772878e-23,7.226191180120922e-24)
    sum e = 2.398743009411381e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2532681532390901 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0856e+04 | 1536 |      1 | 4.978e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90636.01924089003 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 898.7815191215045, dt = 1.2532681532390901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 281.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.247046878254213e-22,3.281324792920279e-21,2.06065948319978e-22)
    sum a = (2.5473857316051858e-23,1.10786303701266e-22,-3.2551431136761853e-23)
    sum e = 2.3987315210902356e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.2532609962452617 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0683e+04 | 1536 |      1 | 5.006e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90127.39389940297 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 900.0347872747436, dt = 1.2532609962452617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (1.3%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 304.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.873444532713307e-22,3.504273122999171e-21,1.4034449567372533e-22)
    sum a = (-9.3377690888539e-23,1.4657031515840364e-22,5.480394282467304e-23)
    sum e = 2.398720125942295e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.253254230534086 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0865e+04 | 1536 |      1 | 4.977e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90659.58993062135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 901.2880482709888, dt = 1.253254230534086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 315.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.994251569336024e-22,3.710400077087527e-21,2.6376731036785457e-22)
    sum a = (2.724618176067852e-24,5.454347981967217e-23,-7.426695686753868e-23)
    sum e = 2.3987088486846036e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.253247857630632 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0520e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89646.07039251679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 902.541302501523, dt = 1.253247857630632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.6%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 280.18 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.671438222805315e-22,3.721068742797579e-21,8.981308024184601e-23)
    sum a = (-4.5075236621549707e-23,-3.4627355862918915e-23,4.8582083358153983e-23)
    sum e = 2.398697701515844e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2532418789649105 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0830e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90556.4385727909 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 903.7945503591536, dt = 1.2532418789649105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.3%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 311.98 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.723376907948307e-22,3.621818573898486e-21,2.2767832991102514e-22)
    sum a = (5.3037470320544104e-24,3.3157298913723935e-24,-9.628820042414439e-23)
    sum e = 2.398686696603774e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.253236295864595 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0860e+04 | 1536 |      1 | 4.977e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90645.24928526624 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 905.0477922381185, dt = 1.253236295864595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 29.89 us   (9.1%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 287.04 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.163548232703347e-22,3.6497533499979585e-21,1.6227708949260878e-23)
    sum a = (4.1252835393959366e-23,-1.0491494295155956e-22,-3.594307286179032e-23)
    sum e = 2.39867584595317e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2532311095549977 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0525e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89660.38826654771 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 906.3010285339831, dt = 1.2532311095549977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 308.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.874594218846102e-22,3.4504338081304515e-21,8.996083935737558e-24)
    sum a = (4.708563449903666e-24,-1.067661569908885e-23,-7.471228941428037e-24)
    sum e = 2.398665161394453e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.2532263211590133 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0820e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90526.33992415616 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 907.5542596435381, dt = 0.6710328342884395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 286.10 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.806875553499173e-22,3.502315630328986e-21,2.1823544277233292e-23)
    sum a = (-4.9109258678349194e-23,5.0108522572474655e-23,6.108069283117967e-23)
    sum e = 2.398547495180842e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.2532240372099055 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0549e+04 | 1536 |      1 | 5.028e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48045.13068722778 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 764                                                     [SPH][rank=0]
Info: time since start : 151.365004564 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010170580000000002 s
sph::RenderFieldGetter compute custom field took :  0.00086306 s
rho_t_ampl=-0.000652366, rho_t_phi=3.14159 rad
eps_t_ampl=-1.84103e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.51144e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 920.18s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 908.2252924778265, dt = 1.2532240372099055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 360.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.078899901019685e-22,3.585552880936632e-21,1.2137163192403237e-22)
    sum a = (-1.4654742422733883e-23,1.1812918417231756e-23,-4.3679642273422136e-23)
    sum e = 2.3986520864051317e-13
    sum de = -4.291403324402304e-28
Info: cfl dt = 1.253219744096093 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9802e+04 | 1536 |      1 | 5.154e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87534.80008603798 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 909.4785165150364, dt = 1.253219744096093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 309.40 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.977321902999291e-22,3.5763200956185185e-21,9.873567623736284e-25)
    sum a = (-4.6292056389502337e-23,1.0223660068649323e-23,-1.6430044417371725e-23)
    sum e = 2.3986403502836036e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.2532159695157845 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0046e+04 | 1536 |      1 | 5.112e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88253.15236274799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 910.7317362591325, dt = 1.2532159695157845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 313.81 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.30013524953e-22,3.588156809108541e-21,-2.528170255406781e-24)
    sum a = (5.0894809424801426e-23,1.684109919648038e-23,-6.169273785314851e-23)
    sum e = 2.398630352779382e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.2532125954157964 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9948e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87964.9241771916 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 911.9849522286482, dt = 1.2532125954157964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 292.18 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.502141559437992e-22,3.613437231760394e-21,-1.0820425149716247e-22)
    sum a = (3.690138209334615e-24,1.0637947494899098e-23,3.3536794258100105e-23)
    sum e = 2.398620564499635e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.2532096230437828 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9909e+04 | 1536 |      1 | 5.136e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87849.89989553708 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 913.238164824064, dt = 1.2532096230437828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.7%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 285.01 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.451352560427795e-22,3.6228824645515806e-21,-6.5041936582071634e-24)
    sum a = (-3.6650082358660276e-23,1.083085904852784e-22,5.0676326978956945e-23)
    sum e = 2.398611004164848e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2532070529480481 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1691e+04 | 1536 |      1 | 7.081e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63710.04485544643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 914.4913744471078, dt = 1.2532070529480481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 300.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.621798909927913e-22,3.819855991132777e-21,6.774345039947188e-23)
    sum a = (-6.5126310189117e-23,5.2702979859800565e-23,9.975333335661892e-23)
    sum e = 2.398601682058124e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.2532048855822167 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1504e+04 | 1536 |      1 | 7.143e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63163.00560049911 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 915.7445815000558, dt = 1.2532048855822167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 298.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5552299307137795e-22,3.851057663783166e-21,2.235066403801871e-22)
    sum a = (-7.732096047229448e-23,-5.985294877722339e-23,4.9216160073172004e-24)
    sum e = 2.398592608296865e-13
    sum de = 1.1107161545511846e-27
Info: cfl dt = 1.2532031212976844 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1430e+04 | 1536 |      1 | 7.167e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62945.068967715604 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 916.997786385638, dt = 1.2532031212976844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 308.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2516456227853936e-22,3.705535277947309e-21,1.702526391771837e-22)
    sum a = (-3.424289542640616e-23,8.644255896160908e-23,-5.229275520223762e-23)
    sum e = 2.39858379272004e-13
    sum de = -6.815758221109542e-28
Info: cfl dt = 1.2532017603437782 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1562e+04 | 1536 |      1 | 7.124e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63331.668785872906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 918.2509895069358, dt = 1.2532017603437782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 298.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.37015328714252e-22,3.905519441481552e-21,6.886865201312597e-23)
    sum a = (4.556460978909587e-23,-9.56366534719896e-23,-5.49287748075866e-23)
    sum e = 2.398575244879979e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.2532008028678754 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1541e+04 | 1536 |      1 | 7.131e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63270.56637951175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 919.5041912672796, dt = 0.6714340063078907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 299.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.11505860595874e-22,3.727203266913053e-21,3.0335872477602687e-23)
    sum a = (3.559197821261451e-23,-1.5860077976222978e-22,-1.3359894480760017e-22)
    sum e = 2.398510894302628e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.253200580644101 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1725e+04 | 1536 |      1 | 7.070e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34188.65984902254 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 774                                                     [SPH][rank=0]
Info: time since start : 152.48446663500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001070317 s
sph::RenderFieldGetter compute custom field took :  0.000983535 s
rho_t_ampl=-0.000470719, rho_t_phi=3.14159 rad
eps_t_ampl=-1.26688e-06, eps_t_phi=6.28319 rad
vx_t_ampl=2.71602e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 932.13s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 920.1756252735875, dt = 1.253200580644101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.27 us    (2.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 377.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.70759692774437e-22,3.507296986254042e-21,-1.6350131643869745e-22)
    sum a = (-2.0037847265741727e-23,-1.1778497741709327e-22,-1.6545247684160046e-23)
    sum e = 2.398564972276005e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.253200116895108 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9709e+04 | 1536 |      1 | 5.170e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87260.77778127619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 921.4288258542316, dt = 1.253200116895108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (1.2%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 312.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.047339940611811e-22,3.385287658488596e-21,-1.1088994216985176e-22)
    sum a = (1.9879131643834862e-23,1.0538598948922021e-22,-2.833589391422063e-23)
    sum e = 2.398555967789908e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.253200182967136 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0301e+04 | 1536 |      1 | 5.069e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88998.48076586892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 922.6820259711267, dt = 1.253200182967136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 282.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3690036010097246e-22,3.657201411213484e-21,-1.5378850922452655e-22)
    sum a = (4.7839533703094275e-23,3.8961569118257055e-23,-6.025528759734715e-23)
    sum e = 2.3985484430193086e-13
    sum de = 8.330371159133885e-28
Info: cfl dt = 1.2532006517823173 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0197e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88693.42355050542 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 923.9352261540938, dt = 1.2532006517823173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 285.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.232416584183071e-22,3.6643849463924976e-21,-2.4930116991680065e-22)
    sum a = (2.4944805243028974e-23,1.1212308370184069e-22,-8.056656321652409e-24)
    sum e = 2.39854122104274e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2532015234766645 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0220e+04 | 1536 |      1 | 5.083e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88763.14422223541 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 925.1884268058761, dt = 1.2532015234766645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 288.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2154869178463383e-22,3.8507013802777396e-21,-2.2669010452476314e-22)
    sum a = (5.3037470320544104e-24,5.40821302020267e-23,1.104584685206172e-22)
    sum e = 2.3985343140999734e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.2532027976285378 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7083e+04 | 1536 |      1 | 5.672e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79546.76784901945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 926.4416283293529, dt = 1.2532027976285378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 336.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.554080244580984e-22,3.88212128690825e-21,-1.4001575249267004e-23)
    sum a = (-2.5229170732278772e-23,-2.6361840738128278e-23,-6.154267865169237e-23)
    sum e = 2.39852772955156e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.253204473723618 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0220e+04 | 1536 |      1 | 5.083e-02 | 0.1% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88762.12439376918 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 927.6948311269814, dt = 1.253204473723618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 277.55 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.063119920815748e-22,3.7986748954029875e-21,-1.989032948762236e-22)
    sum a = (-8.934366883173952e-24,-6.534830443009731e-23,-7.230121749305896e-23)
    sum e = 2.398521474474344e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2532065511472017 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0341e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89118.80636719441 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 928.948035600705, dt = 1.2532065511472017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 279.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7245265940811023e-22,3.69236601454836e-21,-2.9625297879795884e-22)
    sum a = (-4.259530502925494e-23,-6.09982783817807e-23,-4.6621783361911797e-23)
    sum e = 2.398515555580579e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.2532090291845255 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0160e+04 | 1536 |      1 | 5.093e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88585.78406448201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 930.2012421518522, dt = 1.2532090291845255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 278.07 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7764652792240945e-22,3.618637648309436e-21,-3.385890011222508e-22)
    sum a = (-5.535207314001922e-23,-4.8933096350201225e-23,-6.751855997777437e-23)
    sum e = 2.3985099792108015e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.2532119070210626 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0070e+04 | 1536 |      1 | 5.108e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88322.05542880649 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 931.4544511810367, dt = 0.6715068883116828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.4%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 281.18 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7426059465506297e-22,3.593315066820514e-21,-3.9702219380419815e-22)
    sum a = (-6.501388662359963e-23,6.702768471979322e-23,1.1645575385463995e-23)
    sum e = 2.398484981918922e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.2532137438674855 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9965e+04 | 1536 |      1 | 5.126e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47159.66954239491 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 784                                                     [SPH][rank=0]
Info: time since start : 153.312147457 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000915648 s
sph::RenderFieldGetter compute custom field took :  0.0007979290000000001 s
rho_t_ampl=-0.000277226, rho_t_phi=3.14159 rad
eps_t_ampl=-8.86749e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.85234e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 944.08s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 932.1259580693484, dt = 1.2532137438674855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 339.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5236699703059054e-22,3.716258502152392e-21,-3.5584816757409096e-22)
    sum a = (3.2206044945268056e-24,8.172429859169024e-23,6.529850570767003e-23)
    sum e = 2.398503519165357e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.2532171024587726 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9911e+04 | 1536 |      1 | 5.135e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87854.38549082966 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 933.3791718132159, dt = 1.2532171024587726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.5%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 288.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3024346217955907e-22,3.8278843563409e-21,-2.403956686169314e-22)
    sum a = (4.794534411769885e-24,-2.1414548352612706e-23,3.3568867865225577e-23)
    sum e = 2.3984981154158734e-13
    sum de = -8.835242138475332e-28
Info: cfl dt = 1.2532209900903772 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1480e+04 | 1536 |      1 | 4.879e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92462.7122413126 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 934.6323889156746, dt = 1.2532209900903772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.7%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 284.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4717312851629134e-22,3.736391413462505e-21,-2.1820852119400807e-22)
    sum a = (6.350608821548442e-23,1.1487621140398716e-23,6.621909860813042e-24)
    sum e = 2.398493797001947e-13
    sum de = -5.553580772755923e-28
Info: cfl dt = 1.253225273553332 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0964e+04 | 1536 |      1 | 4.961e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90949.79805148309 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 935.885609905765, dt = 1.253225273553332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 271.88 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.521370598040315e-22,3.771403914326386e-21,-2.2679502309252484e-22)
    sum a = (-2.5989683087249168e-24,-4.1614064231721134e-23,4.76647575365212e-23)
    sum e = 2.398489843332776e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.2532299518857257 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0752e+04 | 1536 |      1 | 4.995e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90327.21321288736 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 937.1388351793183, dt = 1.2532299518857257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.3%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 321.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0134806079383465e-22,3.6859702709718316e-21,-1.4134215429540054e-22)
    sum a = (-2.2941020516454802e-23,-5.2745031330039576e-23,-6.39378205446019e-23)
    sum e = 2.3984862603169137e-13
    sum de = -4.291403324402304e-28
Info: cfl dt = 1.2532350237188572 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0871e+04 | 1536 |      1 | 4.976e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90675.10545545816 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 938.392065131204, dt = 1.2532350237188572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 281.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5055906178363778e-22,3.612938765510343e-21,-2.914031171216467e-22)
    sum a = (-2.898544045074125e-23,-6.1122507454982216e-24,-1.1396354971823808e-23)
    sum e = 2.398483051675578e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.2532404875948042 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2722e+04 | 1536 |      1 | 6.760e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66739.5043103668 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 939.6453001549229, dt = 1.2532404875948042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 282.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.099278625754803e-22,3.634482757896472e-21,-2.727620881567178e-22)
    sum a = (3.393207733350521e-23,2.3686422402823447e-24,-1.472301560745974e-23)
    sum e = 2.3984802207590886e-13
    sum de = 0
Info: cfl dt = 1.2532463419586666 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2751e+04 | 1536 |      1 | 6.751e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66825.7810114709 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 940.8985406425177, dt = 1.2532463419586666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 286.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.047339940611811e-22,3.642807061607941e-21,-2.9329820650784764e-22)
    sum a = (1.2436030291494164e-23,-8.548003309054149e-23,5.060571674223913e-23)
    sum e = 2.398477770501467e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.2532525851590308 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5029e+04 | 1536 |      1 | 6.137e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73516.60712447531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 942.1517869844763, dt = 1.2532525851590308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.8%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 277.58 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (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: 3.3209635416666656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.148917938632205e-22,3.48064516143165e-21,-1.8893996375580386e-22)
    sum a = (-4.995574199518581e-23,-8.753909881825783e-24,-2.856594919689116e-23)
    sum e = 2.398475703417812e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.2532592154484188 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0517e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89636.60221003249 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 943.4050395696353, dt = 0.6712512954738941 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 327.31 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.404012619815984e-22,3.522846983981594e-21,-2.5772594166551395e-22)
    sum a = (2.0351971934099062e-24,-4.454821160198654e-23,-7.907025046778798e-23)
    sum e = 2.398472339317345e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.2532630587945464 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 1536 |      1 | 5.099e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47390.34835311981 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 794                                                     [SPH][rank=0]
Info: time since start : 154.170546016 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001006097 s
sph::RenderFieldGetter compute custom field took :  0.0009479890000000001 s
rho_t_ampl=-7.67453e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-7.09751e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.91713e-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": {
            "drag_mode": {
                "stopping_times": [
                    1.0
                ],
                "type": "constant_stopping_times"
            },
            "mode": {
                "ndust": 1,
                "pure_diffusion_mode": false,
                "type": "monofluid_tvi"
            }
        },
        "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"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": 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 = 1536 ( 1.5e+03 ) Ntotal = 1536 ( 1.5e+03 rank min = 3.7e+06 max = 1.5e+03) rate = 1.536000e+03 N.s^-1
SPH setup: the generation step took : 0.000847491 s
SPH setup: final particle count = 1536 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.22 us    (60.1%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (0.4%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 310.35 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         1536 / 1536 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.004982857 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.0071800760000000005 s
0.0001
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (0.9%)
   patch tree reduce : 411.00 ns  (0.1%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 371.00 ns  (0.1%)
   LB compute        : 289.18 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 1.93 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6699218749999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.024494414403244815 unconverged cnt = 1536
Warning: High interface/patch volume 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.9160156249999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0269438558435693 unconverged cnt = 1536
Warning: High interface/patch volume 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.9160156249999998
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.029638241427926232 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1360677083333335
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03260206557071886 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.249348958333333
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03586227212779075 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.169921875
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03944849934056983 unconverged cnt = 1536
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1669972911017323e-22,0,0)
    sum a = (-9.137313407659576e-20,6.866035066724818e-20,7.221582330189209e-20)
    sum e = 2.398442666242532e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.00039628646961847966 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    | 6.8985e+03 | 1536 |      1 | 2.227e-01 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
[ 4.44089210e-16-0.83405746j -4.47520018e-01-0.08297127j
  4.47520018e-01-0.08297127j  0.00000000e+00+0.j        ]
k=5.878469308107144 cs=0.1 ts=1 epsilon_0=0.5
eigenval = [-0.4065939-8.63910035e-02j  0.4065939-8.63910035e-02j
 -0.       -1.27338332e-16j]
eigenvec = [[ 8.04988221e-01+0.00000000e+00j  8.04988221e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.47718701e-02-1.63651651e-01j  3.47718701e-02+1.63651651e-01j
   4.47213595e-01-5.88539673e-17j]
 [-5.56783212e-01-1.18302464e-01j  5.56783212e-01-1.18302464e-01j
  -2.14014427e-16-1.28408656e-16j]]
15.453220691892247
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 : 154.916181378 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001078853 s
sph::RenderFieldGetter compute custom field took :  0.000998423 s
offset_rho=0.999981, ampl_rho=2.46613e-16, phi_rho=3.33873 rad
offset_eps=0.500009, ampl_eps=1.29523e-16, phi_eps=0.216429 rad
offset_vx=0, ampl_vx=0.0001, phi_vx=4.71239 rad
eigenval = [-0.4065939-8.63910035e-02j  0.4065939-8.63910035e-02j
 -0.       -1.27338332e-16j]
eigenvec = [[ 8.04988221e-01+0.00000000e+00j  8.04988221e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.47718701e-02-1.63651651e-01j  3.47718701e-02+1.63651651e-01j
   4.47213595e-01-5.88539673e-17j]
 [-5.56783212e-01-1.18302464e-01j  5.56783212e-01-1.18302464e-01j
  -2.14014427e-16-1.28408656e-16j]]
eigenvec=[[ 8.04988221e-01+0.00000000e+00j  8.04988221e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.47718701e-02-1.63651651e-01j  3.47718701e-02+1.63651651e-01j
   4.47213595e-01-5.88539673e-17j]
 [-5.56783212e-01-1.18302464e-01j  5.56783212e-01-1.18302464e-01j
  -2.14014427e-16-1.28408656e-16j]]
v=[2.46613384e-16+0.j    1.29523479e-16+0.j    0.00000000e+00-0.001j]
c=[ 0.00036513+8.20435114e-04j  0.00036513-8.20435114e-04j
 -0.00065723-1.27446532e-19j]
coefs=[ 0.00036513+8.20435114e-04j  0.00036513-8.20435114e-04j
 -0.00065723-1.27446532e-19j]
coefs=[ 0.00036513+8.20435114e-04j  0.00036513-8.20435114e-04j
 -0.00065723-1.27446532e-19j]
decomp=[2.46655994e-16-5.57142679e-21j 1.29399529e-16+8.78999292e-21j
 1.13552257e-19-1.00000000e-03j]
rho_t_ampl=2.46613e-16, rho_t_phi=3.33873 rad
eps_t_ampl=1.29523e-16, eps_t_phi=0.216429 rad
vx_t_ampl=0.0001, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 0.39s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0, dt = 0.00039628646961847966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.05 us    (2.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 512.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 330.03 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.751487809957796e-22,2.7209167979932274e-23,2.861815366689876e-23)
    sum a = (-1.8546136669852042e-19,6.306215000703287e-20,4.177058958967036e-20)
    sum e = 2.3984426662425324e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.013473738970139988 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    | 3.1992e+04 | 1536 |      1 | 4.801e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.714082700533204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.00039628646961847966, dt = 0.013473738970139988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.3%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 315.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1669972911017323e-21,8.75782870174625e-22,5.8539165733470355e-22)
    sum a = (-1.1342834121444788e-19,2.489083857333994e-21,-1.6674209106520568e-20)
    sum e = 2.398442666245757e-10
    sum de = 2.0679515313825692e-23
Info: cfl dt = 0.02219198485632001 cfl multiplier : 0.56                       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1391e+04 | 1536 |      1 | 4.893e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 991.3017908375717 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.013870025439758469, dt = 0.02219198485632001 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.4%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 307.73 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.634192956864504e-21,5.229477746882306e-22,-1.7837711954573228e-22)
    sum a = (-1.030597670665162e-19,-5.821711950911043e-20,-2.167111089608489e-20)
    sum e = 2.3984426780742416e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.028004057700449336 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    | 3.0859e+04 | 1536 |      1 | 4.977e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1605.0582877078673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03606201029607848, dt = 0.028004057700449336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 274.25 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3926420087501105e-21,-1.7809635414255498e-21,-8.407017439338017e-22)
    sum a = (-1.040725843551112e-19,1.4121838437297461e-19,2.7831687474371885e-20)
    sum e = 2.398442785350806e-10
    sum de = -6.617444900424222e-24
Info: cfl dt = 0.03187867478192183 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    | 3.1052e+04 | 1536 |      1 | 4.947e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2038.056931251434 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06406606799652781, dt = 0.03187867478192183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.15 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 282.82 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.968187539067968e-21,5.5133935580154245e-21,7.396751806437648e-22)
    sum a = (4.055840164290953e-20,-1.5944011325545748e-19,-4.301690922242526e-21)
    sum e = 2.398443125901851e-10
    sum de = -1.4889251025954498e-23
Info: cfl dt = 0.03446165812397796 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    | 3.1177e+04 | 1536 |      1 | 4.927e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2329.40433422071 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.09594474277844964, dt = 0.03446165812397796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.4%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 22.75 us   (6.9%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.3%)
   LB compute        : 289.21 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5009918733051964e-21,-4.773473902713771e-21,7.924701895136809e-23)
    sum a = (-1.3900271842437408e-19,-1.0478223620637715e-19,-1.2235949094178217e-20)
    sum e = 2.398443819979239e-10
    sum de = -1.075334796318936e-23
Info: cfl dt = 0.03618355893923696 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.1126e+04 | 1536 |      1 | 4.935e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2513.993604237559 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1304064009024276, dt = 0.03618355893923696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 310.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.473558157949178e-20,-7.623069135517044e-21,-5.002070125696067e-22)
    sum a = (1.0017622164771227e-19,3.4265736423015057e-20,1.3144731876889405e-20)
    sum e = 2.398444940089351e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.03733141181480868 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    | 2.8839e+04 | 1536 |      1 | 5.326e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2445.665708481864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16658995984166458, dt = 0.03733141181480868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 285.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.476140654300976e-21,-3.828254796122499e-21,4.496860692390262e-22)
    sum a = (-1.0039292137682245e-19,-1.6173616494665643e-19,4.728466573594026e-20)
    sum e = 2.3984465153296405e-10
    sum de = 2.2333876538931747e-23
Info: cfl dt = 0.038096572711073085 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.1059e+04 | 1536 |      1 | 4.945e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2717.52457273798 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.20392137165647325, dt = 0.038096572711073085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.4%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 305.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5060631173157038e-20,-1.3648361848251916e-20,2.888315740678365e-21)
    sum a = (-2.231330023181315e-20,-3.8768358087055923e-20,-3.545877650150218e-21)
    sum e = 2.398448546521603e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.0386066116741912 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    | 3.0794e+04 | 1536 |      1 | 4.988e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2749.554751181564 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24201794436754634, dt = 0.0386066116741912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.3%)
   LB compute        : 282.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4518881850381605e-20,-1.2802751415670549e-20,1.783186673169107e-21)
    sum a = (8.298245251612696e-20,2.772329910629556e-20,5.3775812745811216e-20)
    sum e = 2.3984510198411703e-10
    sum de = -2.3988237764037803e-23
Info: cfl dt = 0.03894657487949616 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.0853e+04 | 1536 |      1 | 4.978e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791.6854806435276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2806245560417375, dt = 0.03894657487949616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 316.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.209738487182362e-21,-1.0439512074476863e-20,4.9840685117920335e-21)
    sum a = (-1.2592285821261472e-20,1.2121338545446056e-20,4.9968441757160723e-20)
    sum e = 2.398453915742018e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.03917315937853506 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    | 3.1316e+04 | 1536 |      1 | 4.905e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2858.5351356462024 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3195711309212337, dt = 0.03917315937853506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 311.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1810135236504441e-20,-1.0268498885125741e-20,6.867348214990529e-21)
    sum a = (-6.529433712750907e-20,-1.9625218061250713e-19,1.0209917392109363e-20)
    sum e = 2.3984572137505394e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.03932416291960056 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    | 3.1008e+04 | 1536 |      1 | 4.954e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2846.9342845240308 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.35874429029976873, dt = 0.027586226997537433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.4%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 307.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3652082933940915e-20,-1.976368814162098e-20,6.370267807991667e-21)
    sum a = (3.176682591424446e-20,8.346999549415801e-20,-6.731140712532384e-20)
    sum e = 2.398453471070101e-10
    sum de = -1.9025154088719637e-23
Info: cfl dt = 0.03942483512171273 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    | 3.1040e+04 | 1536 |      1 | 4.948e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2006.9167139354379 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 14                                                      [SPH][rank=0]
Info: time since start : 155.880630609 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001039179 s
sph::RenderFieldGetter compute custom field took :  0.0009158390000000001 s
rho_t_ampl=0.000223235, rho_t_phi=3.14159 rad
eps_t_ampl=-3.63275e-06, eps_t_phi=6.28319 rad
vx_t_ampl=9.87199e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 0.77s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.38633051729730616, dt = 0.03942483512171273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.11 us    (2.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 380.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1268385913729009e-20,-1.2614659764087156e-20,2.6472662526215604e-21)
    sum a = (-2.9240919696804e-20,-1.6048307493920068e-19,2.8852435132128187e-21)
    sum e = 2.398462914194596e-10
    sum de = 3.7223127564886245e-23
Info: cfl dt = 0.03949186529669618 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    | 3.0553e+04 | 1536 |      1 | 5.027e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823.1709615326445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4257553524190189, dt = 0.03949186529669618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 294.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4518881850381605e-20,-2.3761337868400147e-20,4.144955589553856e-21)
    sum a = (-1.1730227211395066e-19,-2.9155791085035296e-20,6.559048902767813e-20)
    sum e = 2.3984676093174735e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.03953651363987937 cfl multiplier : 0.997739178322084          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1178e+04 | 1536 |      1 | 4.926e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2885.8392551187662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4652472177157151, dt = 0.03953651363987937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 277.38 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9069576161695242e-20,-2.2320884482605285e-20,7.976348408269774e-21)
    sum a = (5.683627582567762e-20,5.732417260728251e-21,8.446451839197822e-20)
    sum e = 2.398472239129493e-10
    sum de = 1.6543612251060553e-23
Info: cfl dt = 0.03956624305421326 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    | 3.0326e+04 | 1536 |      1 | 5.065e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2810.0865602402187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5047837313555945, dt = 0.03956624305421326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 286.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4627231714936694e-20,-2.1404390836969495e-20,1.169139873212449e-20)
    sum a = (1.6184761017916062e-21,-1.0013663036648515e-19,2.1875747979603937e-20)
    sum e = 2.398477195317324e-10
    sum de = 1.2407709188295415e-23
Info: cfl dt = 0.03958603081850091 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    | 3.1171e+04 | 1536 |      1 | 4.928e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2890.6283420491673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5443499744098078, dt = 0.03958603081850091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 284.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6035779954152818e-20,-2.7462850077321856e-20,1.1319171514522744e-20)
    sum a = (3.7969855660023165e-20,-7.036792336177034e-20,-1.1212631426481053e-20)
    sum e = 2.3984824635383564e-10
    sum de = -2.3161057151484775e-23
Info: cfl dt = 0.039599195072666835 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    | 3.0821e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859.5597919715347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5839360052283087, dt = 0.039599195072666835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 276.19 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4627231714936694e-20,-2.9660116586795276e-20,1.0220241531935752e-20)
    sum a = (-6.859223612990451e-20,4.989832827224873e-20,-3.400535363533911e-20)
    sum e = 2.3984880310459323e-10
    sum de = 1.819797347616661e-23
Info: cfl dt = 0.03960794787651032 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    | 3.1382e+04 | 1536 |      1 | 4.894e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2912.625352835093 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6235352003009755, dt = 0.03960794787651032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.4%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 314.55 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.755267805792403e-20,-2.5302543228334203e-20,8.422072531132014e-21)
    sum a = (-8.846089254269353e-20,-1.8948056207097343e-20,6.4796119374353154e-21)
    sum e = 2.398493885203399e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03961376390697799 cfl multiplier : 0.9997022786267765         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0597e+04 | 1536 |      1 | 5.020e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.34881861608 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6631431481774859, dt = 0.03961376390697799 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.30 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 271.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1669972911017323e-20,-2.7416576620419294e-20,9.480517551724701e-21)
    sum a = (1.827185028390842e-19,-1.3953052557173763e-19,7.167982131745412e-20)
    sum e = 2.398500013404318e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.03961762625468072 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    | 2.3098e+04 | 1536 |      1 | 6.650e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2144.5195400184425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7027569120844639, dt = 0.03961762625468072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 333.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.751487809957795e-21,-3.5332832387692553e-20,1.3611714773214873e-20)
    sum a = (-2.3701532871425196e-20,7.727638948843003e-20,-5.739220998904613e-20)
    sum e = 2.398506403002373e-10
    sum de = -3.3087224502121107e-23
Info: cfl dt = 0.039620190287068584 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    | 1.3781e+04 | 1536 |      1 | 1.115e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.643568563759 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7423745383391446, dt = 0.030286496255467754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.6%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 280.60 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5168981037712127e-20,-2.869770721438911e-20,9.316742072171784e-21)
    sum a = (7.251314685349172e-20,-1.2077844182550208e-19,4.796690761371365e-20)
    sum e = 2.398489622217796e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.039621904710920065 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    | 2.2826e+04 | 1536 |      1 | 6.729e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1620.2725681933396 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 24                                                      [SPH][rank=0]
Info: time since start : 156.792418376 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001020394 s
sph::RenderFieldGetter compute custom field took :  0.000831021 s
rho_t_ampl=0.000440848, rho_t_phi=3.14159 rad
eps_t_ampl=-1.41146e-05, eps_t_phi=6.28319 rad
vx_t_ampl=9.50197e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.16s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7726610345946123, dt = 0.039621904710920065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.78 us    (2.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 347.50 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0184887268178141e-20,-3.6482437329733426e-20,1.2812761575297431e-20)
    sum a = (-6.10551486767913e-20,-2.1924980970077536e-20,3.666491854941118e-20)
    sum e = 2.3985171223797936e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039623031903160355 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    | 3.0881e+04 | 1536 |      1 | 4.974e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2867.744413474161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8122829393055324, dt = 0.039623031903160355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 292.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5060631173157038e-20,-3.5392766134449337e-20,1.4041633645832768e-20)
    sum a = (-8.66798916440693e-22,-5.411592643852397e-21,-4.6098371516996887e-20)
    sum e = 2.3985247422171845e-10
    sum de = 1.4889251025954498e-23
Info: cfl dt = 0.03962378534266975 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    | 2.6930e+04 | 1536 |      1 | 5.704e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2500.869077224068 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8519059712086927, dt = 0.03962378534266975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 321.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4085482392161258e-20,-3.528004745707249e-20,1.0575375426840886e-20)
    sum a = (-5.0572299281086676e-20,7.215035270099173e-20,-2.3916216332194817e-20)
    sum e = 2.398532000160201e-10
    sum de = -1.1580528575742387e-23
Info: cfl dt = 0.03962429211744833 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    | 2.6163e+04 | 1536 |      1 | 5.871e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2429.6947960015978 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8915297565513625, dt = 0.03962429211744833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 318.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.571073036048756e-20,-3.088447121356916e-20,1.006718276229018e-20)
    sum a = (7.100979248278988e-20,-5.857072675502675e-20,-1.3813594381642952e-21)
    sum e = 2.398539458847524e-10
    sum de = 4.963083675318166e-24
Info: cfl dt = 0.03962463846341852 cfl multiplier : 0.9999825750636614         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0669e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2848.250501464054 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9311540486688108, dt = 0.03962463846341852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.6%)
   patch tree reduce : 1.31 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 273.79 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0834986455508662e-20,-3.579522596612421e-20,1.0458910770161737e-20)
    sum a = (4.9245013440286863e-20,-4.5417530006220054e-20,-4.2128467206748917e-20)
    sum e = 2.3985471044182777e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.03962488184098562 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    | 3.0274e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811.531267485271 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9707786871322294, dt = 0.03962488184098562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 278.77 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0184887268178141e-20,-3.7334232660040736e-20,7.982280528072431e-21)
    sum a = (4.0631199208157483e-20,3.556665811105718e-20,-3.018152143555478e-20)
    sum e = 2.398554923776206e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03962506052788558 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    | 3.0852e+04 | 1536 |      1 | 4.979e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2865.2369997452156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.010403568973215, dt = 0.03962506052788558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.2%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 310.04 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.776339028962015e-21,-3.4320459420174495e-20,7.023034071636935e-21)
    sum a = (2.0207249739523653e-20,-4.690855746362045e-20,1.5053862806942458e-20)
    sum e = 2.3985629037611877e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039625200012454474 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    | 3.0800e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860.4630726790338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0500286295011005, dt = 0.039625200012454474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.8%)
   patch tree reduce : 1.16 us    (0.4%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 267.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.722164096684472e-21,-3.7813234753667926e-20,8.515773815627652e-21)
    sum a = (1.0679233525210724e-19,-3.635823574244039e-20,5.627351019346018e-21)
    sum e = 2.3985710312129914e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03962531725591393 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    | 3.0435e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826.588063770915 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.089653829513555, dt = 0.03962531725591393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 299.61 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.896122629714016e-21,-3.904486963295293e-20,8.551995677578207e-21)
    sum a = (-5.604396744111855e-20,-1.1417728716847182e-19,-4.6207449144601984e-20)
    sum e = 2.3985792929877285e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039625423533897704 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    | 2.8168e+04 | 1536 |      1 | 5.453e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2615.97510706964 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.129279146769469, dt = 0.029712405122449548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.4%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 307.12 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.096916128358174e-21,-4.397909032487814e-20,6.152076028222303e-21)
    sum a = (3.341238948217483e-20,-1.8977765787573036e-20,-5.373154871160471e-20)
    sum e = 2.3985368057116714e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.03962550922334413 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    | 2.3345e+04 | 1536 |      1 | 6.579e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1625.7413446125072 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 34                                                      [SPH][rank=0]
Info: time since start : 157.64441956500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009465760000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007258140000000001 s
rho_t_ampl=0.000647674, rho_t_phi=3.14159 rad
eps_t_ampl=-3.07388e-05, eps_t_phi=6.28319 rad
vx_t_ampl=8.91418e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.55s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.1589915518919185, dt = 0.03962550922334413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.54 us    (2.2%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 372.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0089449885382044e-21,-4.3316806406990806e-20,3.911156501907522e-21)
    sum a = (-3.7719296598239526e-20,4.3127795940752467e-20,-3.7166183008316867e-20)
    sum e = 2.3985925353151073e-10
    sum de = 4.1359030627651384e-24
Info: cfl dt = 0.03962560850588132 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    | 2.9649e+04 | 1536 |      1 | 5.181e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2753.569633426683 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1986170611152627, dt = 0.03962560850588132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 306.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.722164096684472e-21,-4.0377411275440675e-20,2.7666294100940043e-21)
    sum a = (4.74030657428504e-22,1.0849356171127054e-19,-3.381213346584839e-20)
    sum e = 2.398601840588525e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03962571465804461 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    | 2.3799e+04 | 1536 |      1 | 6.454e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2210.3172775527664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.238242669621144, dt = 0.03962571465804461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 335.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.259440925190803e-21,-3.4783174976391223e-20,1.4932525844359741e-21)
    sum a = (-1.4627231714936692e-19,3.297546190794252e-20,-4.802643595623664e-20)
    sum e = 2.398610490297173e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.03962582772689344 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    | 2.9595e+04 | 1536 |      1 | 5.190e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2748.6102046023643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2778683842791885, dt = 0.03962582772689344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 278.74 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5006456240879497e-20,-3.497266654935847e-20,-6.914606403761911e-22)
    sum a = (-1.3806481490931912e-19,9.862307025063716e-20,-9.97957092816689e-20)
    sum e = 2.3986192120734606e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.039625949105135144 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.0725e+04 | 1536 |      1 | 4.999e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.4948684435594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.317494212006082, dt = 0.039625949105135144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 311.64 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0261424671801197e-20,-2.976383311249209e-20,-5.6716604904523386e-21)
    sum a = (-8.072064909353952e-20,-5.729336028389211e-20,-1.1214737731466508e-20)
    sum e = 2.3986279936363786e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.039626079685783244 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.0570e+04 | 1536 |      1 | 5.025e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839.099624724133 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3571201611112171, dt = 0.039626079685783244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.6%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 268.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3295220879343622e-20,-3.5123408364552243e-20,-4.361004046289093e-21)
    sum a = (1.0983967519271906e-20,3.0138251531009026e-20,-3.111817112860386e-20)
    sum e = 2.3986368223943583e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.03962622002700294 cfl multiplier : 0.9999998656999756         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0243e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808.782728172226 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3967462407970004, dt = 0.03962622002700294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.5%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 290.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0098899874968567e-20,-3.219676338796196e-20,-5.988447061176674e-21)
    sum a = (6.151563560115043e-20,7.22504162874531e-20,-1.850024447391546e-20)
    sum e = 2.3986456858315746e-10
    sum de = -1.1580528575742387e-23
Info: cfl dt = 0.039626370462887396 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    | 2.6863e+04 | 1536 |      1 | 5.718e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2494.891219921931 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4363724608240034, dt = 0.039626370462887396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.8%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 275.25 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7281803396536314e-20,-2.849939700467967e-20,-6.47154423340228e-21)
    sum a = (9.89098826057247e-20,-1.693154480224906e-19,8.419329374617272e-22)
    sum e = 2.3986545715714046e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039626531177414694 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.0224e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807.071846105973 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4759988312868908, dt = 0.039626531177414694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 281.46 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.84 us   (95.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2731109085222676e-20,-3.9995010783772005e-20,-6.0549512077756696e-21)
    sum a = (9.448108189203553e-20,-9.954001999702497e-20,2.6446210960797555e-20)
    sum e = 2.398663467387036e-10
    sum de = 1.1580528575742387e-23
Info: cfl dt = 0.0396267022537683 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.0555e+04 | 1536 |      1 | 5.027e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837.760119226533 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5156253624643055, dt = 0.029696706724919197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 270.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0184887268178141e-20,-4.156864310922401e-20,-4.762281476203738e-21)
    sum a = (-4.036032454676977e-21,4.942159779596008e-21,3.0477762295706594e-20)
    sum e = 2.398591578704895e-10
    sum de = 8.271806125530277e-24
Info: cfl dt = 0.0396268391512214 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    | 3.0959e+04 | 1536 |      1 | 4.961e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2154.820248061366 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 158.483584151 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008909520000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007964760000000001 s
rho_t_ampl=0.00083914, rho_t_phi=3.14159 rad
eps_t_ampl=-5.26896e-05, eps_t_phi=6.28319 rad
vx_t_ampl=8.13681e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.93s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.5453220691892247, dt = 0.0396268391512214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.42 us    (2.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 358.44 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1105861116896378e-20,-3.9821296535594943e-20,-3.494682193203167e-21)
    sum a = (-2.0453745681386477e-19,-5.947031367369304e-20,-5.856997347029386e-20)
    sum e = 2.3986774534916535e-10
    sum de = -1.9025154088719637e-23
Info: cfl dt = 0.03962702657529199 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    | 2.9515e+04 | 1536 |      1 | 5.204e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2741.241782433463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.584948908340446, dt = 0.03962702657529199 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 282.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4541244321727118e-20,-4.3454006142402925e-20,-7.579976239414338e-21)
    sum a = (4.43421820691692e-20,8.601741925138095e-20,-1.3236424758046743e-20)
    sum e = 2.3986870828460956e-10
    sum de = -9.926167350636332e-24
Info: cfl dt = 0.03962722605882056 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    | 2.9929e+04 | 1536 |      1 | 5.132e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2779.6430343633047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.624575934915738, dt = 0.03962722605882056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 279.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.674005407376088e-20,-3.7162700751664887e-20,-7.206282165726166e-21)
    sum a = (1.4155909804122067e-19,1.2641037969790531e-23,4.5095394448857064e-20)
    sum e = 2.3986959129695965e-10
    sum de = 1.1580528575742387e-23
Info: cfl dt = 0.03962743578000172 cfl multiplier : 0.9999999921397332         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0416e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824.9649787735366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6642031609745587, dt = 0.03962743578000172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 274.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.722164096684472e-21,-3.886617898871399e-20,-4.2635032251628214e-21)
    sum a = (8.770921535734261e-20,1.0775573907708192e-20,-5.3917901658785054e-20)
    sum e = 2.3987046950230315e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.039627655635109324 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    | 3.0574e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839.6404005692348 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7038305967545604, dt = 0.039627655635109324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 314.18 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.284292144195024e-21,-3.8225976381724455e-20,-8.361964781100594e-21)
    sum a = (1.1271094660342886e-19,8.43927664666368e-20,-2.120734533575526e-21)
    sum e = 2.398713420276821e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03962788551542025 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    | 3.0546e+04 | 1536 |      1 | 5.029e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837.0004441928622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7434582523896698, dt = 0.03962788551542025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.6%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 278.28 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.896122629714016e-21,-3.342295068418255e-20,-7.419704855549797e-21)
    sum a = (-7.809316487807868e-20,-7.463087947686865e-20,1.2638470933052871e-20)
    sum e = 2.3987220778409775e-10
    sum de = 1.6543612251060553e-23
Info: cfl dt = 0.0396281253046083 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    | 3.0237e+04 | 1536 |      1 | 5.080e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808.3058116538405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.78308613790509, dt = 0.0396281253046083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.4%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 313.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.101388622627276e-21,-3.953131317464473e-20,-6.6264278934908835e-21)
    sum a = (-9.838167701601865e-20,-1.0491015314451738e-19,5.674964912535989e-20)
    sum e = 2.3987306570104904e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.03962837488061842 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    | 3.0293e+04 | 1536 |      1 | 5.070e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813.5826552096496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8227142632096982, dt = 0.03962837488061842 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 288.87 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.262275922066759e-20,-4.428893297801944e-20,-3.503509875237465e-21)
    sum a = (6.446816941027654e-20,-2.2055407185667233e-20,7.729776602315095e-20)
    sum e = 2.3987391473180306e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.03962863411699607 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    | 2.9761e+04 | 1536 |      1 | 5.161e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2764.1975194990364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8623426380903165, dt = 0.03962863411699607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 286.50 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.4468169410276535e-21,-4.352116599649772e-20,-3.3160747687240996e-23)
    sum a = (-6.311379610333795e-21,-7.006892296955053e-20,9.01605610263976e-21)
    sum e = 2.398747538541708e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.0396289028837897 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    | 3.0200e+04 | 1536 |      1 | 5.086e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804.9235671145616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9019712722073125, dt = 0.029681314279218274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 278.22 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.505464367574299e-21,-4.6552158228053125e-20,-1.118507802607538e-21)
    sum a = (2.5868530162526928e-20,-9.396410543257939e-20,-1.9264436475004568e-20)
    sum e = 2.398645439171032e-10
    sum de = 1.6543612251060553e-23
Info: cfl dt = 0.03962911175849913 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    | 3.0366e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2112.4018006412953 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 54                                                      [SPH][rank=0]
Info: time since start : 159.463730384 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00091648 s
sph::RenderFieldGetter compute custom field took :  0.000868851 s
rho_t_ampl=0.00101134, rho_t_phi=3.14159 rad
eps_t_ampl=-7.90678e-05, eps_t_phi=6.28319 rad
vx_t_ampl=7.20112e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.32s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.9316525864865308, dt = 0.03962911175849913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.24 us    (2.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 330.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.69284038341115e-21,-5.063028669486544e-20,-2.30164140272395e-21)
    sum a = (-1.0537024327982174e-19,6.684908229395415e-20,-9.1519234793979e-21)
    sum e = 2.398760512626955e-10
    sum de = -1.075334796318936e-23
Info: cfl dt = 0.03962939549719481 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    | 2.9972e+04 | 1536 |      1 | 5.125e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2783.8095979424634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9712816982450299, dt = 0.03962939549719481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 280.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2893633882055307e-20,-4.479483571627212e-20,-2.4639516440180202e-21)
    sum a = (-7.237770952279786e-20,2.1789869337066133e-21,3.03428387980406e-20)
    sum e = 2.398769274709078e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.039629689761472825 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    | 2.6112e+04 | 1536 |      1 | 5.882e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2425.3007152356286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0109110937422248, dt = 0.039629689761472825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (1.4%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 285.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6956753802871056e-20,-4.598972958237341e-20,-4.788975787892122e-22)
    sum a = (1.0241770947069563e-19,-5.012050865017787e-21,2.1592974949170732e-20)
    sum e = 2.398777212660421e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.039629993055935765 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    | 3.0441e+04 | 1536 |      1 | 5.046e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2827.3961336559814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0505407835036977, dt = 0.039629993055935765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 276.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.31808835173745e-21,-4.633082268015309e-20,2.034546736107805e-22)
    sum a = (-5.986330016668536e-20,7.032050045657474e-20,5.745686634013057e-20)
    sum e = 2.3987850018022155e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.039630305230512974 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    | 3.0133e+04 | 1536 |      1 | 5.097e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2798.8681128292533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0901707765596336, dt = 0.039630305230512974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 304.82 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4356357053548975e-20,-4.205126094311277e-20,3.191130707650441e-21)
    sum a = (1.1837222702643214e-19,2.1895683058246166e-20,2.9923076758628438e-21)
    sum e = 2.398792638194688e-10
    sum de = 0
Info: cfl dt = 0.03963062614274185 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    | 3.0545e+04 | 1536 |      1 | 5.029e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837.169820806879 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1298010817901467, dt = 0.03963062614274185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 281.38 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.7718665346929136e-21,-4.2143097769838624e-20,2.230494192401765e-21)
    sum a = (7.828277714105008e-21,1.956478212834649e-20,5.014999752169475e-20)
    sum e = 2.398800113486845e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03963095564865603 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    | 3.0207e+04 | 1536 |      1 | 5.085e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805.769237206582 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1694317079328886, dt = 0.03963095564865603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 286.74 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.234589706186582e-21,-4.141386561868571e-20,5.152430907982095e-21)
    sum a = (2.483378895602585e-19,8.443677037281048e-20,-1.2701063392707784e-20)
    sum e = 2.3988074195943876e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.03963129360281304 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    | 3.0479e+04 | 1536 |      1 | 5.039e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2831.0710459534466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2090626635815447, dt = 0.03963129360281304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 304.00 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.826041466970457e-21,-3.678216682184136e-20,3.403647531811696e-21)
    sum a = (-1.5526535590743913e-19,-4.927960683271165e-20,2.6544344816094327e-20)
    sum e = 2.3988145487348254e-10
    sum de = 1.1580528575742387e-23
Info: cfl dt = 0.03963163985836504 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    | 2.6450e+04 | 1536 |      1 | 5.807e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2456.8608610243555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.248693957184358, dt = 0.03963163985836504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 319.05 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.638665451133606e-21,-4.1385038893856877e-20,5.2333165934820134e-21)
    sum a = (1.411256985830003e-20,1.5504146768328674e-19,1.317668708811103e-20)
    sum e = 2.398821493429385e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.03963199426712277 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    | 2.4011e+04 | 1536 |      1 | 6.397e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2230.2894010145274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2883255970427228, dt = 0.029657506741114226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.3%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 320.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.792245259428032e-21,-3.2738172133465384e-20,5.359213181211336e-21)
    sum a = (1.5364010793911283e-19,-1.2846778385208036e-19,2.7656549340476784e-20)
    sum e = 2.3986919616672285e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.03963226575241852 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    | 2.4072e+04 | 1536 |      1 | 6.381e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1673.2710123413674 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 64                                                      [SPH][rank=0]
Info: time since start : 160.33033296800002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009921510000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008247990000000001 s
rho_t_ampl=0.0011611, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000108918, eps_t_phi=6.28319 rad
vx_t_ampl=6.14039e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.317983103783837, dt = 0.03963226575241852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.39 us    (2.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 348.08 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.550694311313638e-21,-4.2033650122232017e-20,6.670023200648382e-21)
    sum a = (-2.703329120649411e-20,-3.31758503003263e-20,5.683020910936638e-21)
    sum e = 2.3988320248730547e-10
    sum de = 4.963083675318166e-24
Info: cfl dt = 0.03963263306782521 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    | 2.3027e+04 | 1536 |      1 | 6.670e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2138.9636212530177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3576153695362554, dt = 0.03963263306782521 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 307.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7922452594280315e-22,-4.1460144448773385e-20,6.459825924008554e-21)
    sum a = (-4.2337709574900095e-20,-1.1516051721988301e-19,3.486863831261281e-20)
    sum e = 2.3988389677009406e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.039633009098192055 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    | 2.3276e+04 | 1536 |      1 | 6.599e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2162.060496487912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3972480026040808, dt = 0.039633009098192055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.4%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.05 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0044724942691022e-21,-4.764880381761861e-20,8.420126416163515e-21)
    sum a = (-1.534775831422802e-19,-2.6904771231655025e-20,1.1452507441248376e-20)
    sum e = 2.398845166901968e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.039633392727839147 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    | 2.3732e+04 | 1536 |      1 | 6.472e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2204.4683826231253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.436881011702273, dt = 0.039633392727839147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 311.57 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0293237132733229e-20,-4.6966174540948094e-20,8.410002277366952e-21)
    sum a = (-1.5629467962071243e-19,7.167875898967458e-20,4.552152499976255e-20)
    sum e = 2.398851143332834e-10
    sum de = 9.098986738083304e-24
Info: cfl dt = 0.03963378379048954 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    | 2.3837e+04 | 1536 |      1 | 6.444e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2214.2599277194654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.476514404430112, dt = 0.03963378379048954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 325.45 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7173453531981228e-20,-4.217193110781837e-20,1.0889327933394562e-20)
    sum a = (1.2649846686806363e-20,1.816178992786974e-19,-5.0124442920856124e-20)
    sum e = 2.398856898426608e-10
    sum de = 0
Info: cfl dt = 0.03963418213130101 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    | 2.3933e+04 | 1536 |      1 | 6.418e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2223.146453557861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5161481882206016, dt = 0.03963418213130101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.6%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 299.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3652082933940915e-20,-3.279482038418431e-20,7.007280826940311e-21)
    sum a = (1.2866546415916535e-20,-7.742506800053901e-20,6.5245140519478435e-22)
    sum e = 2.3988624268624674e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.039634587594466864 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    | 2.3968e+04 | 1536 |      1 | 6.409e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2226.420486435364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5557823703519027, dt = 0.039634587594466864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.7%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 294.26 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197266003333707e-20,-4.0997395826802096e-20,8.039390808199876e-21)
    sum a = (-4.967841289850721e-20,7.564295939913688e-20,-3.61141934864519e-20)
    sum e = 2.3988677236391455e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.039635000023250905 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    | 2.5742e+04 | 1536 |      1 | 5.967e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2391.2575010397013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5954169579463695, dt = 0.039635000023250905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 297.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5168981037712127e-20,-3.49655739450045e-20,5.879389344768363e-21)
    sum a = (-4.149799812459817e-20,2.777270761005272e-20,-4.283271562930368e-20)
    sum e = 2.3988727840814304e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.039635419260035644 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    | 3.0250e+04 | 1536 |      1 | 5.078e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2810.0752615478295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6350519579696203, dt = 0.039635419260035644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 294.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7390153261091403e-20,-3.4813702934292373e-20,4.048552390111588e-21)
    sum a = (-4.6590441758687244e-20,-1.2081339232807614e-19,-2.892517296598217e-20)
    sum e = 2.398877603842798e-10
    sum de = 5.790264287871194e-24
Info: cfl dt = 0.03963583269287616 cfl multiplier : 0.9999999999997925         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0755e+04 | 1536 |      1 | 4.994e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856.99722120441 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.674687377229656, dt = 0.029626243851487377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 306.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.90154012294177e-20,-4.1337199360153783e-20,3.467223804543875e-21)
    sum a = (8.07477365596783e-20,-2.6573181231737022e-20,-8.633130458234584e-21)
    sum e = 2.398726330811211e-10
    sum de = -1.1580528575742387e-23
Info: cfl dt = 0.03963614558361923 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    | 3.0719e+04 | 1536 |      1 | 5.000e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2133.014432538777 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 161.245595739 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000906491 s
sph::RenderFieldGetter compute custom field took :  0.000815382 s
rho_t_ampl=0.00128599, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000141257, eps_t_phi=2.82885e-13 rad
vx_t_ampl=4.98902e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.09s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.7043136210811434, dt = 0.03963614558361923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.05 us    (2.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 348.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.311033361116548e-20,-4.0994327324778565e-20,3.425628288649435e-21)
    sum a = (-1.1430910710561638e-20,-6.3875564956981774e-21,3.190929633901917e-20)
    sum e = 2.398884689267463e-10
    sum de = 1.1994118882018901e-23
Info: cfl dt = 0.0396365683458898 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    | 2.8124e+04 | 1536 |      1 | 5.462e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2612.6526562341533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7439497666647625, dt = 0.0396365683458898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 313.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6089954886430362e-20,-4.0847475695609237e-20,5.4938760592839496e-21)
    sum a = (-1.220290349551663e-19,7.425179713367047e-20,6.1161573015757226e-21)
    sum e = 2.3988891617672766e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.039636997942968384 cfl multiplier : 0.9999999999999387        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0574e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.2240442007587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7835863350106522, dt = 0.039636997942968384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 318.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2807646488845734e-20,-3.630624480325179e-20,5.225126414508323e-21)
    sum a = (3.423855719940737e-20,-2.3704422818374085e-20,3.9866149677333495e-20)
    sum e = 2.3988930554679667e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039637433658357674 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    | 3.0898e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870.4163950775774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8232233329536207, dt = 0.039637433658357674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 290.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.885287643258507e-20,-3.918738964827438e-20,7.474192466743314e-21)
    sum a = (-4.469431912897323e-20,6.456563402842918e-20,7.715359624705775e-20)
    sum e = 2.398896683133502e-10
    sum de = 8.271806125530277e-24
Info: cfl dt = 0.03963787531885893 cfl multiplier : 0.9999999999999728         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0718e+04 | 1536 |      1 | 5.000e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.673550040385 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8628607666119783, dt = 0.03963787531885893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 305.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1344923317352063e-20,-3.487829357925755e-20,1.1271386440037064e-20)
    sum a = (7.151091060635717e-21,1.2899259689536814e-19,6.589723282837671e-20)
    sum e = 2.398900051527996e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03963832276558733 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    | 3.0688e+04 | 1536 |      1 | 5.005e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.924087597894 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9024986419308374, dt = 0.03963832276558733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 297.69 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.050521186705014e-20,-2.848854813060724e-20,1.3660353059378085e-20)
    sum a = (-3.047339940611811e-20,3.3543111636267877e-20,2.4198401467610864e-20)
    sum e = 2.3989031585064446e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.039638775839093233 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    | 3.0714e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.400258011743 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9421369646964246, dt = 0.039638775839093233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.5%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 289.43 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.229298463220907e-20,-2.9050328687497503e-20,1.3793112202607288e-20)
    sum a = (-2.0044724942691022e-21,4.278167684827907e-20,8.214544512202057e-20)
    sum e = 2.398906002260464e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.039639234379430364 cfl multiplier : 0.999999999999992         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0341e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818.7733730112336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9817757405355176, dt = 0.039639234379430364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 284.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.229298463220907e-20,-2.717162509728777e-20,1.8197769691978082e-20)
    sum a = (1.3936501328398017e-19,1.2614256692539022e-19,4.7480596172214786e-20)
    sum e = 2.398908581300346e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.03963969822620194 cfl multiplier : 0.9999999999999947         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0939e+04 | 1536 |      1 | 4.965e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.382574930629 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.021414974914948, dt = 0.03963969822620194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.2%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 347.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3977132527606172e-20,-2.0518993673552387e-20,1.9392842159721006e-20)
    sum a = (-1.19455725671983e-19,-1.988026315395604e-19,-3.9417074822659154e-20)
    sum e = 2.398910894455829e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.03964016721860714 cfl multiplier : 0.9999999999999964         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0534e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.7418920202426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.06105467314115, dt = 0.02958946523729944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.9%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 269.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (59.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.24555094290417e-20,-3.284160842689227e-20,1.6504213267101162e-20)
    sum a = (-8.359192050424932e-20,2.847403887750459e-20,-7.543264278425624e-21)
    sum e = 2.3987455983982864e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.03964052082090229 cfl multiplier : 0.9999999999999977         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1024e+04 | 1536 |      1 | 4.951e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2151.4980362464607 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 84                                                      [SPH][rank=0]
Info: time since start : 162.063780715 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010467830000000001 s
sph::RenderFieldGetter compute custom field took :  0.001003072 s
rho_t_ampl=0.00138438, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000175099, eps_t_phi=6.28319 rad
vx_t_ampl=3.78154e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.48s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.0906441383784493, dt = 0.03964052082090229 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.13 us    (2.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 341.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4595419254004662e-20,-2.835069699983022e-20,1.6676758846953854e-20)
    sum a = (-2.1669972911017323e-20,3.054144872901068e-21,3.277729820047088e-20)
    sum e = 2.39891400416267e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03964099820047609 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    | 3.0638e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2846.485899618932 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1302846591993516, dt = 0.03964099820047609 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 328.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4839206449253606e-20,-2.8733228101229416e-20,1.8775247714164324e-20)
    sum a = (4.637374202957707e-20,-3.708223193135811e-20,4.5601384267428516e-20)
    sum e = 2.398915683151212e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03964148047819391 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    | 3.0716e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.8263059292976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1699256573998276, dt = 0.03964148047819391 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 291.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1534535580323465e-20,-3.099921103519373e-20,2.0837133884729612e-20)
    sum a = (2.846892691184901e-20,-7.056376851947704e-20,-2.4946450728975385e-21)
    sum e = 2.3989170059368997e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.03964196731324248 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    | 3.0682e+04 | 1536 |      1 | 5.006e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.657024927976 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2095671378780213, dt = 0.03964196731324248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 324.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0776086528437858e-20,-3.4460058076080224e-20,1.9784942342206298e-20)
    sum a = (-1.473558157949178e-20,-2.918427144608508e-20,1.6444026356086997e-20)
    sum e = 2.398918050645028e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.03964245852653956 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0647e+04 | 1536 |      1 | 5.012e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2847.4148444195766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2492091051912637, dt = 0.03964245852653956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.8%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 282.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2347159564486614e-20,-3.479631034739174e-20,2.081220707190891e-20)
    sum a = (-6.850420186495351e-20,-8.956889291237627e-20,1.0839625147788139e-20)
    sum e = 2.398918828781399e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.039642953955908944 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0633e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2846.201920930385 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2888515637178033, dt = 0.039642953955908944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 274.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6031054959359558e-20,-3.9543719445757116e-20,2.1130835711309568e-20)
    sum a = (-1.9484014393618451e-19,-1.2955387485278903e-20,1.3939308107560816e-20)
    sum e = 2.3989193411960026e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.039643453439025096 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0956e+04 | 1536 |      1 | 4.962e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2876.211603162359 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3284945176737124, dt = 0.039643453439025096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.7%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 284.45 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5945067566149985e-20,-3.853873212784285e-20,2.1744878317669065e-20)
    sum a = (-8.646319191495912e-20,1.2273939317361411e-19,-3.936433560909193e-20)
    sum e = 2.3989195890638284e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03964395681351448 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1001e+04 | 1536 |      1 | 4.955e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2880.392803619051 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3681379711127377, dt = 0.03964395681351448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.5%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 285.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.719109100853348e-20,-3.098307494696653e-20,1.9127750037882686e-20)
    sum a = (4.8757439049788975e-20,1.1128147435472466e-20,8.615646481764864e-21)
    sum e = 2.398919573841985e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.039644463916997906 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0998e+04 | 1536 |      1 | 4.955e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2880.2232468610364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4077819279262522, dt = 0.039644463916997906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 293.30 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.304670868930142e-20,-3.27539048194869e-20,2.042037089291441e-20)
    sum a = (-3.6297204625954015e-20,-1.2132501874844384e-19,-7.621230923849109e-20)
    sum e = 2.3989192972662906e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.03964497458713446 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1302e+04 | 1536 |      1 | 4.907e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2908.4764950542562 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.44742639184325, dt = 0.029548263832505306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 318.41 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.534914331109701e-20,-3.896456614141897e-20,1.6486950057396243e-20)
    sum a = (3.6730604084174365e-20,-1.2604555200149965e-19,-6.926286002699428e-20)
    sum e = 2.398748720316982e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03964535733110036 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1317e+04 | 1536 |      1 | 4.905e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2168.81097151353 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 94                                                      [SPH][rank=0]
Info: time since start : 162.87950281500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010394900000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009803190000000001 s
rho_t_ampl=0.00145539, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000209482, eps_t_phi=6.28319 rad
vx_t_ampl=2.55181e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.86s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.4769746556757553, dt = 0.03964535733110036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (2.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 340.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.339884574910545e-20,-4.4031588823399287e-20,1.3843671301248842e-20)
    sum a = (-3.2017384976028097e-20,-1.4211218891781153e-19,-1.830242512197401e-21)
    sum e = 2.3989183674360956e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.039645873985035975 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0582e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841.6584867059814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5166200130068557, dt = 0.039645873985035975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 281.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.556584304020718e-20,-4.998437693863817e-20,1.510780484582044e-20)
    sum a = (-7.676587903727886e-20,2.0013133920780645e-20,-7.464265797795225e-20)
    sum e = 2.398917248841806e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03964639359457399 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0726e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2855.069829587953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5562658869918917, dt = 0.03964639359457399 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 277.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.962896296102293e-20,-4.597656941205697e-20,1.0705136724628985e-20)
    sum a = (9.675642904769235e-20,9.560486785294708e-21,2.1290621363946778e-20)
    sum e = 2.3989160252860126e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.03964691618230445 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0839e+04 | 1536 |      1 | 4.981e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2865.5809637697776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.595912280586466, dt = 0.03964691618230445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 276.17 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.236952203583213e-20,-4.580539461383041e-20,1.3450948481120644e-20)
    sum a = (6.858546426336982e-20,-5.691938990634952e-21,2.9962124568593935e-20)
    sum e = 2.39891454027541e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03964744156810163 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0659e+04 | 1536 |      1 | 5.010e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2848.8942501631896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6355591967687704, dt = 0.03964744156810163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 308.16 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.014834981245285e-20,-4.633312405667074e-20,1.4810769244574696e-20)
    sum a = (1.655044181078948e-20,1.1528025493030992e-19,-3.297272036852262e-20)
    sum e = 2.398912809033855e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.039647969590775496 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0794e+04 | 1536 |      1 | 4.988e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861.532001289153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.675206638336872, dt = 0.039647969590775496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 271.44 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.066301166908951e-20,-3.936493952398086e-20,1.225586503645718e-20)
    sum a = (-5.384988268387805e-20,-6.20364080092305e-20,7.392131535406376e-20)
    sum e = 2.39891083496226e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.039648500089370535 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0808e+04 | 1536 |      1 | 4.986e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2862.834072614925 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7148546079276477, dt = 0.039648500089370535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.8%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 271.17 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.422501346633798e-20,-4.533939232161003e-20,1.7305800053761768e-20)
    sum a = (1.7092191133564914e-20,2.875776289111585e-20,-6.103566377584549e-20)
    sum e = 2.3989086217483313e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03964903290331376 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0528e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.868867140472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.754503108017018, dt = 0.03964903290331376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 279.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2003841242958706e-20,-4.2399621893745595e-20,1.2210374112893961e-20)
    sum a = (-1.7078647400495527e-19,-5.551000841011837e-20,2.373375588838732e-20)
    sum e = 2.398906173300298e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039649567872436065 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0466e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2831.15960635904 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.794152140920332, dt = 0.039649567872436065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 283.12 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.245960317252457e-20,-4.627084140137412e-20,1.4831920032586216e-20)
    sum a = (8.356483303811056e-20,1.973139385244322e-20,1.7647665480813874e-21)
    sum e = 2.398903493744051e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.03965010483702656 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4832e+04 | 1536 |      1 | 6.186e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2307.62253733332 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.833801708792768, dt = 0.029503464180293815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 284.43 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.49699187851542e-20,-4.4197552458706565e-20,1.4448456292249383e-20)
    sum a = (2.0640649197744e-20,-2.3784726309908046e-21,-4.868081194203332e-20)
    sum e = 2.3987364221340866e-10
    sum de = -3.618915179919496e-24
Info: cfl dt = 0.0396505051620769 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4937e+04 | 1536 |      1 | 6.160e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1724.3672432827461 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 104                                                     [SPH][rank=0]
Info: time since start : 163.72079289 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009045170000000001 s
sph::RenderFieldGetter compute custom field took :  0.000839146 s
rho_t_ampl=0.00149888, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000243489, eps_t_phi=6.28319 rad
vx_t_ampl=1.33212e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4.25s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.8633051729730616, dt = 0.0396505051620769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.03 us    (2.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 354.07 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5159531048125605e-20,-4.46180165937415e-20,1.177407784803303e-20)
    sum a = (-1.9232100958527874e-21,-8.253059575370903e-20,-3.985577529100745e-21)
    sum e = 2.3988988755146444e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.039651045710590097 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9748e+04 | 1536 |      1 | 5.163e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2764.497299565157 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9029556781351387, dt = 0.039651045710590097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.4%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 303.29 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.560647423941534e-20,-4.947896026697759e-20,1.2502139842649602e-20)
    sum a = (1.947588815377682e-20,8.111612213127504e-20,-2.5981448828752744e-20)
    sum e = 2.398895236677758e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03965158731523295 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1096e+04 | 1536 |      1 | 4.940e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2889.790900741607 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9426067238457287, dt = 0.03965158731523295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 305.75 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4489116261191006e-20,-4.301886411891706e-20,1.1035854506668982e-20)
    sum a = (-7.327159590537732e-20,-1.114411554966648e-19,-3.3495007254300856e-21)
    sum e = 2.39889174419939e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03965212470037172 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3851e+04 | 1536 |      1 | 6.440e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2216.585462949809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9822583111609617, dt = 0.03965212470037172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 309.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9060126172108723e-20,-5.1255794880526765e-20,1.1351736019386482e-20)
    sum a = (1.3543733069385827e-21,2.1864664073889745e-20,-2.2947323011318647e-21)
    sum e = 2.3988880304387376e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.03965264908334144 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3950e+04 | 1536 |      1 | 6.413e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2225.8028314009644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.021910435861334, dt = 0.03965264908334144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 339.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.761094673368444e-20,-4.7745494697114455e-20,1.1281655709253382e-20)
    sum a = (6.66080792352395e-20,4.4759862067669854e-20,6.129993993961537e-20)
    sum e = 2.398884112890241e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03965317467665086 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4222e+04 | 1536 |      1 | 6.341e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2251.0485812557326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.061563084944675, dt = 0.03965317467665086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 337.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.370357974316663e-20,-4.551583118796316e-20,1.497324154631574e-20)
    sum a = (6.419729474888882e-21,3.0185753794015567e-20,-8.173146478437665e-20)
    sum e = 2.398879997131578e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.03965358112223144 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4335e+04 | 1536 |      1 | 6.312e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2261.6498252034385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.101216259621326, dt = 0.03965358112223144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 302.12 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4655026991290986e-20,-4.460800428325954e-20,8.896471639364708e-21)
    sum a = (1.1682824145652215e-19,-1.1235054310498382e-19,-1.2247330128986465e-20)
    sum e = 2.3988756865797495e-10
    sum de = -8.788794008375919e-25
Info: cfl dt = 0.039653862467928694 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4192e+04 | 1536 |      1 | 6.349e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2248.3173444070812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.140869840743558, dt = 0.039653862467928694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 292.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.784591519065726e-20,-5.188966539551731e-20,9.788465079962795e-21)
    sum a = (2.857727677640409e-20,-4.4472487594754733e-20,-2.8807095771357056e-21)
    sum e = 2.3988711869305694e-10
    sum de = -5.945360652724886e-25
Info: cfl dt = 0.03965402571942435 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4484e+04 | 1536 |      1 | 6.274e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2275.504469678553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.180523703211486, dt = 0.03965402571942435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 301.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8445225378977585e-20,-5.2306637786870297e-20,9.859944689879943e-21)
    sum a = (-9.198903500726853e-20,1.7521170361715154e-19,3.7661304315911454e-20)
    sum e = 2.3988665042321554e-10
    sum de = 2.5849394142282115e-25
Info: cfl dt = 0.039654023280969494 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3684e+04 | 1536 |      1 | 6.485e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2201.147030420416 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.220177728930911, dt = 0.02945796133945766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.3%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 334.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.352920417989829e-20,-4.279026071816387e-20,1.1773196967221364e-20)
    sum a = (-4.3502470618867274e-20,-6.886246270250278e-20,4.4299216620424984e-20)
    sum e = 2.398710933010153e-10
    sum de = -3.877409121342317e-26
Info: cfl dt = 0.039653990919372016 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3798e+04 | 1536 |      1 | 6.454e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1643.0540700372776 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 114                                                     [SPH][rank=0]
Info: time since start : 164.64712014600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001058696 s
sph::RenderFieldGetter compute custom field took :  0.0009635080000000001 s
rho_t_ampl=0.00151542, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00027627, eps_t_phi=6.28319 rad
vx_t_ampl=1.5254e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4.64s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.2496356902703685, dt = 0.039653990919372016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.98 us    (2.2%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 386.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4540116881030416e-20,-4.9116096676393016e-20,1.3627607382846392e-20)
    sum a = (-1.0466596916021366e-19,6.921414345489383e-20,-3.2209836212556854e-20)
    sum e = 2.398858861754619e-10
    sum de = -4.992164243728233e-25
Info: cfl dt = 0.03965395050042299 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3992e+04 | 1536 |      1 | 6.402e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2229.8275556414264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.28928968118974, dt = 0.03965395050042299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 315.68 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.991676728874738e-20,-4.3634178132446325e-20,1.0833415488901184e-20)
    sum a = (-2.4378719524894487e-20,-3.3621437795678915e-20,9.773811989660442e-21)
    sum e = 2.3988531920497875e-10
    sum de = 2.972680326362443e-25
Info: cfl dt = 0.039653913693240825 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5102e+04 | 1536 |      1 | 6.119e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2332.9109781047173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.328943631690163, dt = 0.039653913693240825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 337.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.93208430336944e-20,-4.700634281959236e-20,1.2053394139814374e-20)
    sum a = (9.34517581787622e-20,5.2113586685424243e-20,-3.439939098801193e-20)
    sum e = 2.3988478945528113e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.039653880476840465 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5076e+04 | 1536 |      1 | 6.125e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2330.541116974025 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.368597545383404, dt = 0.039653880476840465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 299.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.326340841841159e-20,-4.32400475643461e-20,9.813504611884114e-21)
    sum a = (7.010236236714104e-20,1.0418640990862208e-19,-2.8988685517936917e-20)
    sum e = 2.398842433869722e-10
    sum de = 3.618915179919496e-25
Info: cfl dt = 0.039653850834817865 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5157e+04 | 1536 |      1 | 6.106e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2338.072389107871 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.408251425860244, dt = 0.039653850834817865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 316.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (60.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0964359729883347e-20,-3.807573220613687e-20,8.771269334460374e-21)
    sum a = (8.315852104602897e-21,3.090400811465326e-20,4.701101190581381e-22)
    sum e = 2.3988368282811636e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.039653747472234054 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5135e+04 | 1536 |      1 | 6.111e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2336.0164586821875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.447905276695062, dt = 0.039653747472234054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 293.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.185147424592812e-20,-3.83030129767075e-20,9.373988306386624e-21)
    sum a = (-1.3272858407998111e-20,4.688525602637925e-22,4.936693636587575e-20)
    sum e = 2.3988310831341606e-10
    sum de = -7.754818242684634e-25
Info: cfl dt = 0.03965364029583963 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4982e+04 | 1536 |      1 | 6.148e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2321.8045703811467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.487559024167296, dt = 0.03965364029583963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 287.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2782605894448394e-20,-3.888809166426351e-20,1.2301038243635079e-20)
    sum a = (-2.047812440091137e-20,1.1246541353633892e-19,7.085050309797402e-21)
    sum e = 2.3988252062328624e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03965344452772658 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5069e+04 | 1536 |      1 | 6.127e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2329.8627603591144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.527212664463136, dt = 0.03965344452772658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (0.8%)
   patch tree reduce : 1.35 us    (0.2%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.3%)
   LB compute        : 614.95 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3778070275048253e-20,-3.220850503740761e-20,1.1743669542727853e-20)
    sum a = (5.1357835799111056e-20,-1.836809014651201e-19,8.058370335434744e-20)
    sum e = 2.398819203004304e-10
    sum de = 0
Info: cfl dt = 0.03965311541549949 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4795e+04 | 1536 |      1 | 6.195e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2304.349457086086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.566866108990863, dt = 0.03965311541549949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 337.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0304102742750787e-20,-4.536428422164576e-20,1.639630181312208e-20)
    sum a = (-6.714982855801493e-20,-3.5345724312075094e-20,-3.120289643510435e-21)
    sum e = 2.39881307964506e-10
    sum de = -1.5509636485369269e-24
Info: cfl dt = 0.03965263334180896 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5014e+04 | 1536 |      1 | 6.140e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2324.769306202703 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.606519224406362, dt = 0.029446983161311557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 292.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.453651932693386e-20,-4.3464061438365815e-20,1.464485664899418e-20)
    sum a = (7.88245264638255e-21,-7.086189597577634e-20,4.65696839571617e-20)
    sum e = 2.398675898499897e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.039652281292723364 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4781e+04 | 1536 |      1 | 6.198e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1710.2823292443888 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 124                                                     [SPH][rank=0]
Info: time since start : 165.578299829 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000899949 s
sph::RenderFieldGetter compute custom field took :  0.0007945620000000001 s
rho_t_ampl=0.00150621, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000307056, eps_t_phi=6.28319 rad
vx_t_ampl=-9.59721e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.02s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.635966207567674, dt = 0.039652281292723364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.44 us    (2.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 369.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.318891788652997e-20,-4.679719530882459e-20,1.7223060764933325e-20)
    sum a = (1.1376735778284095e-21,-6.647876568229088e-21,3.0469274586716954e-20)
    sum e = 2.398803317271265e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.03965181167746184 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3862e+04 | 1536 |      1 | 6.437e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217.6034627702534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6756184888603975, dt = 0.03965181167746184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 305.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3344670816827904e-20,-4.578697037538739e-20,1.8112013722153462e-20)
    sum a = (1.4342813320479591e-19,-9.535347553414844e-20,9.123749086092673e-21)
    sum e = 2.3987962713862857e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.039651350945754046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4432e+04 | 1536 |      1 | 6.287e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2270.5666823364127 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.71527030053786, dt = 0.039651350945754046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 366.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.479857525004545e-20,-5.132720368408303e-20,1.805058832044902e-20)
    sum a = (4.740306574285039e-21,-1.7349647711750587e-20,-1.025536622072174e-20)
    sum e = 2.398789776634231e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03965089811087832 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4691e+04 | 1536 |      1 | 6.221e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2294.588310962844 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.754921651483614, dt = 0.03965089811087832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 297.22 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7277078401743054e-20,-5.046976898933484e-20,1.7259749788313816e-20)
    sum a = (-1.3123877344234865e-19,-1.9267732615645964e-20,-1.5241886153610604e-20)
    sum e = 2.398783185578996e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.0396504411000858 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4909e+04 | 1536 |      1 | 6.166e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2314.8379666206747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.794572549594492, dt = 0.0396504411000858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 297.53 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.525433717961131e-20,-5.1271124164342603e-20,1.6556542282239112e-20)
    sum a = (-1.9936375078135936e-20,-3.1870288660274996e-20,-5.428282433875569e-20)
    sum e = 2.3987765162659694e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.039649987402698685 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4680e+04 | 1536 |      1 | 6.224e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2293.5062434254055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.834222990694578, dt = 0.039649987402698685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.4%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 300.38 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.376452654197887e-20,-5.278479505046838e-20,1.3630233771017293e-20)
    sum a = (-9.158272301518696e-20,-1.1527200171797077e-19,3.342544059686749e-20)
    sum e = 2.398769775676657e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.0396495419753698 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0381e+04 | 1536 |      1 | 5.056e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823.2877572127472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.873872978097277, dt = 0.0396495419753698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 272.92 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8829882709929167e-20,-5.900835201668037e-20,1.6694352980915303e-20)
    sum a = (-5.726290341736327e-20,5.1802563584845004e-20,-6.67126642852064e-21)
    sum e = 2.398762970829009e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.0396491048850286 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9817e+04 | 1536 |      1 | 5.151e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2770.8182128394856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.913522520072648, dt = 0.0396491048850286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 296.18 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.050930561053301e-20,-5.3642256197820213e-20,1.5634935204439996e-20)
    sum a = (1.4545969316520378e-20,-5.671724572239838e-20,-2.5827238584740604e-20)
    sum e = 2.398756108658654e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.03964867619584707 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4349e+04 | 1536 |      1 | 6.308e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2262.7383135599443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.953171624957676, dt = 0.03964867619584707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 301.09 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 27.63 us   (8.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8288133387153734e-20,-5.804341394069394e-20,1.4231160810163307e-20)
    sum a = (2.156704053968999e-19,-8.049502161069709e-20,6.618323279826276e-20)
    sum e = 2.398749196082183e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.03964825596930835 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0674e+04 | 1536 |      1 | 5.007e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.4748664466683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9928203011535235, dt = 0.029476423711456867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 286.76 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.810324611897559e-20,-6.088675140194812e-20,1.800605251596199e-20)
    sum a = (7.616995478222589e-20,-1.6558496628601254e-20,9.50600802240852e-21)
    sum e = 2.3986350424157354e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.03964795029652222 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1364e+04 | 1536 |      1 | 4.897e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2166.811369593766 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 134                                                     [SPH][rank=0]
Info: time since start : 166.649922425 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001059016 s
sph::RenderFieldGetter compute custom field took :  0.000976833 s
rho_t_ampl=0.00147306, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000335179, eps_t_phi=6.28319 rad
vx_t_ampl=-1.98082e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.41s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 5.02229672486498, dt = 0.03964795029652222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.93 us    (2.0%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 422.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7060378672632882e-20,-6.060225364968007e-20,1.754762530340705e-20)
    sum a = (-1.3771267784951508e-19,-6.937082883947047e-20,8.665000918134135e-21)
    sum e = 2.3987383297717364e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03964754368466194 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9423e+04 | 1536 |      1 | 5.220e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2734.171273547576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.061944675161502, dt = 0.03964754368466194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 280.83 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7015022478631466e-20,-6.439878423089959e-20,1.7874499201905694e-20)
    sum a = (-1.4212793483013487e-19,-2.874234763633815e-20,1.2269793014906983e-20)
    sum e = 2.398730631941085e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03964714698787341 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0218e+04 | 1536 |      1 | 5.083e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807.942891802887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.101592218846164, dt = 0.03964714698787341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 284.79 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 27.62 us   (8.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2473146905593953e-20,-6.473346257229386e-20,1.8432422065146426e-20)
    sum a = (-2.006639491560204e-19,1.2738888795956479e-19,1.399039976531559e-21)
    sum e = 2.3987236011991336e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03964675894074448 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0384e+04 | 1536 |      1 | 5.055e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823.3441164396613 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.141239365834037, dt = 0.03964675894074448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.5%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 278.59 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.176414779119263e-20,-5.658759489875321e-20,1.827239229405114e-20)
    sum a = (-7.560111799331168e-20,7.189915547014501e-20,-1.641191409923769e-20)
    sum e = 2.398716542616388e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03964637961103469 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0892e+04 | 1536 |      1 | 4.972e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870.5338158522513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.180886124774782, dt = 0.03964637961103469 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.3%)
   LB compute        : 303.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2062109918719116e-20,-5.483809905107749e-20,1.7268646016154736e-20)
    sum a = (2.8306402115016375e-20,-3.0413259411717237e-20,2.5700075741830772e-20)
    sum e = 2.3987094726929866e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03964600904449965 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0482e+04 | 1536 |      1 | 5.039e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832.408815547802 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.220532504385816, dt = 0.03964600904449965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 762.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 274.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9109576109593005e-20,-5.807105691150939e-20,1.9122345419174416e-20)
    sum a = (-8.521716847257562e-20,7.503439741268957e-21,4.690821104593645e-20)
    sum e = 2.3987023979439217e-10
    sum de = -1.1994118882018901e-23
Info: cfl dt = 0.0396456472843754 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0529e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.7488730261075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.260178513430316, dt = 0.0396456472843754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.6%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 273.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.493338132942891e-20,-5.702305766005835e-20,2.1402460771080038e-20)
    sum a = (-4.675296655551987e-20,4.4627962772714335e-20,1.7855391406103363e-20)
    sum e = 2.398695324898589e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.03964529437121069 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0664e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849.291946355949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.299824160714691, dt = 0.03964529437121069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 309.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.615231730567364e-20,-5.451878967240453e-20,2.1534434099460986e-20)
    sum a = (-1.6054741180449959e-19,-1.16187744564317e-19,-6.017160834056657e-20)
    sum e = 2.39868826000252e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.03964495034288378 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0037e+04 | 1536 |      1 | 5.114e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790.9989580394563 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.3394694550859025, dt = 0.03964495034288378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 281.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.446816941027654e-20,-6.231193832886082e-20,1.7602231987821398e-20)
    sum a = (5.853601432588555e-20,-1.3297971187274324e-19,-2.3500676591135264e-20)
    sum e = 2.398681209617096e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03964461523460882 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0462e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830.4647657124506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.379114405428786, dt = 0.02951283673350069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 276.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.845475192746923e-20,-6.656951133911613e-20,1.7635568990571465e-20)
    sum a = (-4.877098278285836e-20,2.3296609641035307e-21,-1.494415128226652e-19)
    sum e = 2.398591897668399e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.039644372979190316 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0602e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2116.7291585364433 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 144                                                     [SPH][rank=0]
Info: time since start : 167.47122780700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000885853 s
sph::RenderFieldGetter compute custom field took :  0.0009158790000000001 s
rho_t_ampl=0.00141822, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000360077, eps_t_phi=6.28319 rad
vx_t_ampl=-2.89069e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.79s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 5.408627242162287, dt = 0.039644372979190316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 337.47 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.175942279639937e-20,-6.448084020742543e-20,9.852618248763936e-21)
    sum a = (5.00711811575194e-20,-6.156189459178536e-20,2.6155412893207644e-20)
    sum e = 2.3986702434486546e-10
    sum de = 4.1359030627651384e-24
Info: cfl dt = 0.03964405205764616 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3292e+04 | 1536 |      1 | 6.595e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2164.1846138492224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.448271615141477, dt = 0.03964405205764616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 338.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.818387726608151e-20,-6.818743193623106e-20,1.4370239807629485e-20)
    sum a = (1.6563985543858866e-20,1.3585093699139665e-19,-1.0671266482013901e-20)
    sum e = 2.3986625924195453e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03964374160743832 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4249e+04 | 1536 |      1 | 6.334e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2253.136296795645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.487915667199124, dt = 0.03964374160743832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 297.63 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.81026148676652e-20,-5.888868043776259e-20,1.3217211479461158e-20)
    sum a = (-5.804843993538765e-20,5.637049838058827e-20,-9.111422804854405e-20)
    sum e = 2.398655659225251e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.039643440167822515 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4062e+04 | 1536 |      1 | 6.384e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2235.67534064307 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.527559408806562, dt = 0.039643440167822515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 329.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.181359772867691e-20,-5.822807956678257e-20,8.010600040152438e-21)
    sum a = (2.301080248488652e-20,-4.871404686007473e-20,-4.015590039029463e-20)
    sum e = 2.3986487613659304e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.03964314777950438 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4419e+04 | 1536 |      1 | 6.290e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2268.871711277379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.567202848974385, dt = 0.03964314777950438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 304.83 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.891523885182835e-20,-6.224242088646561e-20,7.428775453537148e-21)
    sum a = (-7.161926047091225e-20,-2.7385719244938306e-22,-1.0997709518238062e-19)
    sum e = 2.3986419127084575e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.039642864462427714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4010e+04 | 1536 |      1 | 6.397e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2230.8113352965765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.606845996753889, dt = 0.039642864462427714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 310.16 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.403476995205619e-20,-6.129316920444431e-20,1.6850024036041066e-21)
    sum a = (4.0319693347561607e-20,-5.977946855913942e-20,-3.2118739037818483e-20)
    sum e = 2.398635118824939e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.03964259023411984 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4925e+04 | 1536 |      1 | 6.163e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2315.82771925415 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.646488861216317, dt = 0.03964259023411984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 293.32 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.999873749737922e-20,-6.484268537276943e-20,1.9549965230437068e-21)
    sum a = (1.362634984110908e-19,-4.14774014660803e-20,-1.9488954955391885e-21)
    sum e = 2.398628385235609e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03964232510953007 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0195e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805.507781595303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.686131451450437, dt = 0.03964232510953007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 302.69 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.292890883515981e-20,-6.61239701358199e-20,2.4757431466924404e-21)
    sum a = (1.7051559934356757e-20,1.1533019744600328e-19,1.16015888961761e-20)
    sum e = 2.3986217173288195e-10
    sum de = 5.37667398159468e-24
Info: cfl dt = 0.0396420691010474 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0341e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2819.053665354994 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.725773776559967, dt = 0.0396420691010474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.8%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 274.78 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.439163200665348e-20,-5.844573158962419e-20,3.2042404892231703e-21)
    sum a = (-5.0612930480294836e-20,5.55757629696442e-20,-2.6733972601438814e-20)
    sum e = 2.398615120361803e-10
    sum de = -6.2038545941477076e-24
Info: cfl dt = 0.039641822218513825 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0485e+04 | 1536 |      1 | 5.039e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832.397085134959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.765415845661014, dt = 0.02954191379857818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.2%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 383.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.734416581577959e-20,-5.798677891627684e-20,1.6546172861853038e-21)
    sum a = (1.0595262380180532e-19,5.327830805048595e-20,8.233335809669826e-20)
    sum e = 2.398550147935553e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03964164570385969 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0245e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2094.1136969757067 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 154                                                     [SPH][rank=0]
Info: time since start : 168.372396049 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000891824 s
sph::RenderFieldGetter compute custom field took :  0.000782459 s
rho_t_ampl=0.00134439, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000381304, eps_t_phi=6.28319 rad
vx_t_ampl=-3.67327e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.18s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 5.794957759459592, dt = 0.03964164570385969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.57 us    (2.2%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 492.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 368.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.078899901019685e-20,-5.591001145622916e-20,6.529475938328501e-21)
    sum a = (1.9340450823082962e-20,1.24964083593279e-20,-1.8912194902090423e-20)
    sum e = 2.398604963278273e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.03964141318966125 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3905e+04 | 1536 |      1 | 6.426e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2220.9710062655954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.834599405163452, dt = 0.03964141318966125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.4%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 303.03 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.143909819752737e-20,-5.622260187357473e-20,3.7729996353481855e-21)
    sum a = (2.2441965695972316e-20,-2.8825600593179213e-20,5.3808369411444854e-20)
    sum e = 2.3985979759522603e-10
    sum de = -1.1166938269465874e-23
Info: cfl dt = 0.03964119140654356 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4002e+04 | 1536 |      1 | 6.399e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2230.0428791464437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.874240818353114, dt = 0.03964119140654356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 333.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0707736611780534e-20,-5.818332176140484e-20,7.34740047513268e-21)
    sum a = (1.4291347134815925e-19,1.380937672840153e-20,-3.7913744575374234e-20)
    sum e = 2.3985916951013693e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.03964097874759242 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5754e+04 | 1536 |      1 | 5.964e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2392.7833196231095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.913882009759657, dt = 0.03964097874759242 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 309.72 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.25273218378715e-20,-5.679098896822686e-20,4.026475593801488e-21)
    sum a = (-8.986266891537496e-20,5.107542118938053e-20,2.5477386418300083e-20)
    sum e = 2.398585502001815e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03964077522723967 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0571e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.3168768967407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.95352298850725, dt = 0.03964077522723967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 275.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.111404860386211e-20,-5.402772353822469e-20,6.29286218044258e-21)
    sum a = (-1.6631704209205795e-20,4.404346604243865e-20,-3.2991273187487366e-20)
    sum e = 2.398579407315033e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.039640580840841745 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0890e+04 | 1536 |      1 | 4.973e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2869.914895447918 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.99316376373449, dt = 0.039640580840841745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (1.3%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 280.74 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 25.88 us   (8.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0193074755143877e-20,-5.242175951796007e-20,3.8261974519693026e-21)
    sum a = (-1.0733408457488267e-19,-6.389606572481142e-20,-1.3008078341268487e-20)
    sum e = 2.3985734152346607e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03964039558149169 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0671e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849.574128197932 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.032804344575331, dt = 0.03964039558149169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 278.37 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.585435517814715e-20,-5.709281317588642e-20,3.706624806136307e-21)
    sum a = (4.669879162324233e-20,-8.345914496679786e-20,4.9004071501549456e-20)
    sum e = 2.3985675298585895e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.03964021943986593 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0657e+04 | 1536 |      1 | 5.010e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2848.2502577023643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.072444740156823, dt = 0.03964021943986593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.4%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 309.98 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1141136070000884e-20,-6.078985551477398e-20,6.878250029221502e-21)
    sum a = (-3.976440029171679e-20,-9.697212357786378e-20,-1.731153589825923e-20)
    sum e = 2.398561755123323e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.03964005240424544 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0036e+04 | 1536 |      1 | 5.114e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790.585969817655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.112084959596689, dt = 0.03964005240424544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.7%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 267.69 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.479794399873506e-20,-6.49008546481983e-20,4.8776372242105096e-21)
    sum a = (-2.4256825927270017e-20,3.654388176815185e-20,8.638806209705383e-21)
    sum e = 2.3985560948004934e-10
    sum de = 1.0339757656912846e-23
Info: cfl dt = 0.03963989446053484 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0408e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825.062191716388 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.151725012000934, dt = 0.02956326475596427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 317.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.539386825378803e-20,-6.117381505677034e-20,5.647364999895386e-21)
    sum a = (-9.958706925919399e-20,-3.776253007233187e-20,-1.4895314416022665e-20)
    sum e = 2.398513088192286e-10
    sum de = 5.37667398159468e-24
Info: cfl dt = 0.03963978418739456 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0384e+04 | 1536 |      1 | 5.055e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2105.243282513499 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 164                                                     [SPH][rank=0]
Info: time since start : 169.22563705800002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009460650000000001 s
sph::RenderFieldGetter compute custom field took :  0.000832583 s
rho_t_ampl=0.00125455, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000398534, eps_t_phi=6.28319 rad
vx_t_ampl=-4.31672e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.57s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 6.181288276756899, dt = 0.03963978418739456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.22 us    (2.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 342.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.007999989579552e-20,-6.376873611713663e-20,4.7090452316130625e-21)
    sum a = (-3.1407916987905735e-20,3.855311573107816e-21,-6.681274423205655e-20)
    sum e = 2.3985474799615607e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03963964042327815 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2749e+04 | 1536 |      1 | 6.752e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2113.5296279817244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.220928060944293, dt = 0.03963964042327815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 307.77 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.021543722648938e-20,-6.279311118927513e-20,1.0316142178359516e-21)
    sum a = (-5.44728944050698e-20,8.859542387171234e-20,-1.4162956913957668e-20)
    sum e = 2.3985416422764326e-10
    sum de = 8.271806125530277e-24
Info: cfl dt = 0.03963950736724664 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2848e+04 | 1536 |      1 | 6.723e-02 | 0.1% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2122.6699308427515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.260567701367571, dt = 0.03963950736724664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.4%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 333.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.238243451759111e-20,-5.760027992432997e-20,1.5137109017272334e-21)
    sum a = (-3.887051390913732e-21,-4.4372509979255236e-20,5.5358266127941925e-21)
    sum e = 2.398536445526021e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.039639383315092855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3320e+04 | 1536 |      1 | 6.587e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2166.553740756105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.300207208734818, dt = 0.039639383315092855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 303.79 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.170524786412182e-20,-6.199500968451645e-20,2.1235726921597397e-21)
    sum a = (8.952407558864032e-21,-9.276775997985275e-20,3.642817507639478e-20)
    sum e = 2.3985313744075083e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.03963926825635681 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9264e+04 | 1536 |      1 | 5.249e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2718.749016382102 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.339846592049911, dt = 0.03963926825635681 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 312.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.116349854134639e-20,-6.66311988108306e-20,4.1798357172351336e-21)
    sum a = (-1.5751361559695717e-20,8.927735546096155e-20,1.6694564243795918e-20)
    sum e = 2.3985264361487914e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.03963916216352849 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1020e+04 | 1536 |      1 | 4.952e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2881.86212562146 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.379485860306268, dt = 0.03963916216352849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 284.10 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.235534705145234e-20,-5.94829117261819e-20,4.45048130980791e-21)
    sum a = (-4.5994517503634266e-20,1.4748087047867858e-21,-5.896030676264408e-20)
    sum e = 2.398521633322133e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039639065007033215 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0718e+04 | 1536 |      1 | 5.000e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.820821539206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.419125022469796, dt = 0.039639065007033215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.8%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 286.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.473904407166425e-20,-6.116460955069974e-20,6.139020270753917e-22)
    sum a = (4.4856843925805856e-20,-6.535052907081501e-21,-5.986028090132164e-20)
    sum e = 2.3985169683748413e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.039638976755085945 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0706e+04 | 1536 |      1 | 5.002e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2852.7078519349166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.458764087476829, dt = 0.039638976755085945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.5%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 281.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.127184840590148e-20,-6.158184646808924e-20,-1.7767353228125223e-21)
    sum a = (7.076600528754095e-20,4.095100126657344e-20,-2.6522246515718538e-20)
    sum e = 2.3985124435791234e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.03963889737371625 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0680e+04 | 1536 |      1 | 5.007e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.278788771808 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.498403064231915, dt = 0.03963889737371625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 276.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.758795301102854e-20,-5.901874788991527e-20,-2.1673051455494246e-21)
    sum a = (-8.429619462385738e-20,-1.359343651967369e-19,8.45296395186992e-20)
    sum e = 2.398508061033544e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03963882682679199 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0577e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.692308326139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.5380419616056304, dt = 0.029576832448574564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.5%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 266.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.39264200875011e-20,-6.654491041772056e-20,2.5338009962666607e-21)
    sum a = (-1.2043087445297877e-19,-3.52453598272472e-20,-5.1245672785409647e-20)
    sum e = 2.3984832057086915e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.03963878157012848 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0597e+04 | 1536 |      1 | 5.020e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.9787078816685 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 174                                                     [SPH][rank=0]
Info: time since start : 170.097117537 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000998533 s
sph::RenderFieldGetter compute custom field took :  0.0008059940000000001 s
rho_t_ampl=0.00115192, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000411563, eps_t_phi=6.28319 rad
vx_t_ampl=-4.81341e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.95s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 6.567618794054205, dt = 0.03963878157012848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (2.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 345.84 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.901886372159018e-20,-6.645407217678253e-20,-1.5054168650177776e-21)
    sum a = (7.841821447174393e-20,-6.36746375927986e-20,-9.690360655854951e-20)
    sum e = 2.398501494489427e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.0396387246717633 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9521e+04 | 1536 |      1 | 5.203e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2742.5894418104745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.607257575624334, dt = 0.0396387246717633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.5%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 301.11 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.15427230672892e-20,-6.954087940204185e-20,-6.2514646769816725e-21)
    sum a = (-6.397382315324395e-20,4.8310869501525814e-20,-6.174068087665315e-20)
    sum e = 2.3984971299682134e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.03963867819509569 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4071e+04 | 1536 |      1 | 6.381e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2236.3017693208317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.646896300296097, dt = 0.03963867819509569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.4%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 338.61 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.636429203999055e-20,-6.540583485189864e-20,-8.001876892906868e-21)
    sum a = (2.6884310142730866e-21,-1.0127381291785828e-19,5.401525941423009e-20)
    sum e = 2.3984932987126957e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.0396386403863037 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3835e+04 | 1536 |      1 | 6.444e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2214.364597462214 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.686534978491193, dt = 0.0396386403863037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.3%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 327.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.566001792038249e-20,-7.238487817838732e-20,-3.5665792164380426e-21)
    sum a = (-4.604869243591181e-20,-1.8507772458776786e-20,1.8318087584569477e-20)
    sum e = 2.398489614512948e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.03963861121190529 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0194e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805.1090849421903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.726173618877497, dt = 0.03963861121190529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 302.35 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.896468878931263e-20,-7.147723644190926e-20,-3.547969343008504e-21)
    sum a = (9.900468873721039e-21,-3.180378350812056e-20,5.2240502407847653e-20)
    sum e = 2.398486081265026e-10
    sum de = 1.4475660719677984e-23
Info: cfl dt = 0.039638590623667765 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1034e+04 | 1536 |      1 | 4.949e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2883.1844165126085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.765812230089402, dt = 0.039638590623667765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 321.26 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.636429203999055e-20,-7.300204387417216e-20,-8.049107478184271e-22)
    sum a = (-6.23011721191748e-22,-3.777530006674446e-20,2.869078336756432e-20)
    sum e = 2.398482699859014e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03963857857152817 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0466e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830.413970005081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.8054508207130695, dt = 0.03963857857152817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 307.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.696021629504352e-20,-7.461835086246437e-20,-1.343877131912557e-22)
    sum a = (-9.658713238432502e-20,-5.960780108116986e-20,-7.786675607938687e-20)
    sum e = 2.3984794710500307e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039638575003457265 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0345e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2819.1761121001196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.845089399284598, dt = 0.039638575003457265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 317.86 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.286528391329575e-20,-7.741653372928605e-20,-5.332809664204185e-21)
    sum a = (-9.062111796726057e-20,-6.457664492469896e-20,4.487966990895999e-20)
    sum e = 2.398476395423174e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03963857986548784 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0310e+04 | 1536 |      1 | 5.068e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2815.8668945250424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.884727974288055, dt = 0.03963857986548784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 285.83 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.644082944361361e-20,-8.007417391290921e-20,-1.121096577712012e-21)
    sum a = (-7.614286731608711e-20,-4.507288564640021e-20,4.502452890102962e-20)
    sum e = 2.398473473395807e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.039638593101741955 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0376e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821.9840703147447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.9243665541535435, dt = 0.02958275719796699 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 282.80 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.76868528859971e-20,-8.102096550279097e-20,2.1372413108937886e-22)
    sum a = (9.792119009165953e-21,7.268919223736554e-20,-8.403766810649865e-21)
    sum e = 2.398462023217699e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03963860977012102 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0323e+04 | 1536 |      1 | 5.065e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2102.4634681503485 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 184                                                     [SPH][rank=0]
Info: time since start : 170.94939754 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009366880000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008567780000000001 s
rho_t_ampl=0.00103984, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000420303, eps_t_phi=6.28319 rad
vx_t_ampl=-5.15987e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.34s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 6.9539493113515105, dt = 0.03963860977012102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.79 us    (2.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 345.10 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.627830464678097e-20,-7.639863754079003e-20,-9.096676518873774e-22)
    sum a = (7.537087453113213e-20,-1.0221319447214225e-19,-5.8818523105163774e-21)
    sum e = 2.398469211075462e-10
    sum de = 1.1166938269465874e-23
Info: cfl dt = 0.03963862988386013 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9920e+04 | 1536 |      1 | 5.134e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2779.693701162623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.993587921121631, dt = 0.03963862988386013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 288.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.232353459052031e-20,-8.391654685625617e-20,-1.0928336262815515e-21)
    sum a = (-9.093262382785644e-20,1.3716669941673093e-19,-2.795869399777039e-22)
    sum e = 2.398466468754506e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.03963866002273743 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5105e+04 | 1536 |      1 | 6.118e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2332.3628588956435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.033226551005491, dt = 0.03963866002273743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 326.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.914957605749077e-20,-7.373329964950439e-20,-9.928830161799792e-22)
    sum a = (6.811143360594132e-20,8.96567122499226e-20,-3.836288872766286e-20)
    sum e = 2.398464124486936e-10
    sum de = -6.617444900424222e-24
Info: cfl dt = 0.03963869840195646 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7813e+04 | 1536 |      1 | 5.523e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2583.920520714502 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.072865211028229, dt = 0.03963869840195646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.4%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 309.69 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.302780871012837e-20,-7.112330060505694e-20,-3.2683235183335358e-21)
    sum a = (3.195643817721586e-20,5.940560399201144e-20,-1.69162416634072e-20)
    sum e = 2.3984619321336785e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03963874496835494 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3870e+04 | 1536 |      1 | 6.435e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217.6417128357944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.112503909430186, dt = 0.03963874496835494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 300.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.194431006457751e-20,-6.936658319658446e-20,-3.513803520099314e-21)
    sum a = (-1.0975841279430275e-19,3.09141659144553e-20,3.3707926359258157e-20)
    sum e = 2.3984598926425477e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.039638799656311834 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4052e+04 | 1536 |      1 | 6.386e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2234.5143698520196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.15214265439854, dt = 0.039638799656311834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (1.3%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 301.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.990802510937637e-20,-6.870545327353142e-20,-1.1743225375717556e-21)
    sum a = (-1.0720203317745616e-19,-1.1536565716119764e-20,-1.051750428117804e-19)
    sum e = 2.3984580053332295e-10
    sum de = -6.2038545941477076e-24
Info: cfl dt = 0.0396388623986101 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6948e+04 | 1536 |      1 | 5.700e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2503.5985803936455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.191781454054852, dt = 0.0396388623986101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 317.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.413366982702476e-20,-7.000327091386385e-20,-8.095918682670064e-21)
    sum a = (-2.1026645590221497e-20,-1.7005909353605794e-20,-6.80255052820108e-20)
    sum e = 2.3984562693921194e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03963893312631067 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0632e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2845.8399233915407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.2314203164534625, dt = 0.03963893312631067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 286.78 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (57.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.321269597830652e-20,-7.078679703401074e-20,-1.0056094434268121e-20)
    sum a = (-2.1016487790419456e-19,1.5774118734616796e-19,7.115576511427686e-20)
    sum e = 2.398454683858655e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039639011768782935 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0712e+04 | 1536 |      1 | 5.001e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.217808360439 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.271059249579773, dt = 0.039639011768782935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.9%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 271.83 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.529370587619868e-20,-6.107030601868341e-20,-4.477051688654649e-21)
    sum a = (-1.3289449481008107e-19,-6.460807061783652e-21,-4.029201386725563e-20)
    sum e = 2.3984532476266437e-10
    sum de = -1.2407709188295415e-23
Info: cfl dt = 0.03963909825373473 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0697e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2851.882084806448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.310698261348556, dt = 0.02958156730026218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.4%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 300.94 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.762322796413304e-20,-6.451525504477557e-20,-7.877792519853375e-21)
    sum a = (4.2574724903614344e-20,4.7018884660298455e-20,-4.7627469918390874e-20)
    sum e = 2.3984500584802886e-10
    sum de = -1.0339757656912846e-23
Info: cfl dt = 0.03963916949028103 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1187e+04 | 1536 |      1 | 4.925e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2162.2243929419774 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 194                                                     [SPH][rank=0]
Info: time since start : 171.818508121 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010336380000000001 s
sph::RenderFieldGetter compute custom field took :  0.000999514 s
rho_t_ampl=0.000921672, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000424782, eps_t_phi=6.28319 rad
vx_t_ampl=-5.35663e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.73s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 7.340279828648818, dt = 0.03963916949028103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.25 us    (2.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 338.03 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.361428297559483e-20,-6.185936073299339e-20,-9.874203015772385e-21)
    sum a = (-2.232515099824886e-20,3.995779858358576e-20,2.6361390135502283e-20)
    sum e = 2.3984512995488756e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.039639267841202676 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0870e+04 | 1536 |      1 | 4.976e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2867.918422768814 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.3799189981390985, dt = 0.039639267841202676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 293.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.496865628253341e-20,-6.041454597417155e-20,-7.362828329491292e-21)
    sum a = (-2.133307255091635e-20,1.0738626233558456e-20,2.3720351437694975e-20)
    sum e = 2.3984501601409554e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.039639375486825855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2915e+04 | 1536 |      1 | 6.703e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2128.8895309394 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 7.419558265980301, dt = 0.039639375486825855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 327.37 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.643137945402708e-20,-6.056871174825041e-20,-6.4749128323399765e-21)
    sum a = (-7.79712712804542e-20,-6.779654842522902e-20,-1.7150206527593707e-20)
    sum e = 2.398449271489243e-10
    sum de = 1.0339757656912846e-23
Info: cfl dt = 0.0396394906818196 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0377e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2822.1374874431367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.459197641467127, dt = 0.0396394906818196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.4%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 319.74 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.008195489685081e-19,-6.481229133117427e-20,-7.96477998095255e-21)
    sum a = (-1.2538280185647297e-19,1.017979183539984e-20,-6.108459404843079e-20)
    sum e = 2.398448524538314e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.039639613354574166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0184e+04 | 1536 |      1 | 5.089e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804.2182594784244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.498837132148947, dt = 0.039639613354574166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 311.88 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0629121712853996e-19,-6.286609392274864e-20,-1.1256918043322126e-20)
    sum a = (6.773474852994903e-20,1.5857162054573925e-19,-4.0580680623041584e-20)
    sum e = 2.3984479178881634e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.03963974342369188 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0085e+04 | 1536 |      1 | 5.106e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2795.059304442657 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.538476745503521, dt = 0.03963974342369188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 291.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0000692498434495e-19,-5.363810313904699e-20,-1.2459142210961996e-20)
    sum a = (-1.0006787178315718e-19,2.943081963184011e-20,-7.393633938325718e-20)
    sum e = 2.398447449533738e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03963988080646014 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0781e+04 | 1536 |      1 | 4.990e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859.7518034492828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.578116488927213, dt = 0.03963988080646014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 316.07 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0726636590953575e-19,-5.503043593222496e-20,-1.605107476887242e-20)
    sum a = (7.936585254494253e-20,9.601139642572106e-20,9.049993253465382e-21)
    sum e = 2.3984471173559534e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03964002541873948 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0747e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856.5465585271622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.617756369733673, dt = 0.03964002541873948 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 297.24 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0136129829128353e-19,-4.99058788373034e-20,-1.404754863912235e-20)
    sum a = (4.444450074009182e-20,-6.772730708188442e-20,-2.6947307527709507e-21)
    sum e = 2.3984469191215504e-10
    sum de = 8.68539643180679e-24
Info: cfl dt = 0.039640177174996176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9866e+04 | 1536 |      1 | 5.143e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2774.7303685426955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.657396395152412, dt = 0.039640177174996176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.6%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 291.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.886925140651653e-20,-5.583612933423151e-20,-1.438714882267087e-20)
    sum a = (-2.792611948492753e-20,1.4820929086555695e-19,-5.773998990578515e-20)
    sum e = 2.39844685248664e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.03964033598833308 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0225e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808.0975232181727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.697036572327408, dt = 0.029573773618714938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 293.41 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0206557241089159e-19,-4.717388038481688e-20,-1.718574012563154e-20)
    sum a = (-1.8202607948591184e-19,9.712027138461201e-21,1.865786490308791e-20)
    sum e = 2.398446889748711e-10
    sum de = -7.858215819253763e-24
Info: cfl dt = 0.03964046056350283 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0172e+04 | 1536 |      1 | 5.091e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2091.3372818373637 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 204                                                     [SPH][rank=0]
Info: time since start : 172.66314066700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001077169 s
sph::RenderFieldGetter compute custom field took :  0.001026655 s
rho_t_ampl=0.000800735, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000425132, eps_t_phi=6.28319 rad
vx_t_ampl=-5.40796e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8.11s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 7.726610345946123, dt = 0.03964046056350283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 351.77 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1078773650757605e-19,-4.8836320713876687e-20,-1.531644733620148e-20)
    sum a = (-2.456833178786589e-20,1.154101173747843e-19,-2.4929174450288615e-20)
    sum e = 2.398447010584488e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.03964062992357459 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3400e+04 | 1536 |      1 | 6.564e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2173.9985101100356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.7662508065096265, dt = 0.03964062992357459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 299.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.089457888101396e-19,-4.216463018921066e-20,-1.7168560672171696e-20)
    sum a = (-1.465745116934776e-19,1.0356658241959483e-19,-8.11252665221514e-21)
    sum e = 2.3984473079948707e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039640807664046686 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3858e+04 | 1536 |      1 | 6.438e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2216.5494811423573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.8058914364332015, dt = 0.039640807664046686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 302.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1728872838088127e-19,-3.829289485581094e-20,-1.7156836524895005e-20)
    sum a = (-3.739763293784161e-20,-4.010461053384961e-21,6.72675644756054e-20)
    sum e = 2.3984477116173756e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.039640992118882605 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3916e+04 | 1536 |      1 | 6.422e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2221.9939409386793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.845532244097249, dt = 0.039640992118882605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 348.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1718037851632617e-19,-4.0584113573658446e-20,-1.299621968460887e-20)
    sum a = (-8.144523881275167e-20,1.1568503101809201e-19,-2.558882752800438e-20)
    sum e = 2.3984482344295746e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03964118320089165 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4648e+04 | 1536 |      1 | 6.232e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290.004331328256 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.885173236216131, dt = 0.03964118320089165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 294.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2081009897892158e-19,-3.3624433553042404e-20,-1.5851050836352792e-20)
    sum a = (-5.998350079767615e-20,7.084837373544743e-20,2.810518355051777e-20)
    sum e = 2.398448873414439e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.039641380815834557 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0462e+04 | 1536 |      1 | 5.042e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830.2403199674177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.9248144194170225, dt = 0.039641380815834557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.5%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 304.42 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.225978717440805e-19,-3.17042126014022e-20,-1.36726754873583e-20)
    sum a = (5.0230320021084684e-20,7.245406661652461e-20,3.8765591602590045e-21)
    sum e = 2.3984496255873856e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03964158486845087 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0340e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818.857109579933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.964455800232857, dt = 0.03964158486845087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.5%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 292.95 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.182097022295995e-19,-2.880151549755484e-20,-1.3999230601444353e-20)
    sum a = (8.445871942069001e-20,3.66841384325734e-20,-5.155695461537841e-20)
    sum e = 2.3984504878811596e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.03964179526236393 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9972e+04 | 1536 |      1 | 5.125e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2784.705950590405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.004097385101307, dt = 0.03964179526236393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 309.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1436328203789393e-19,-2.805518173814146e-20,-1.7141777011106943e-20)
    sum a = (-2.012598734110734e-20,1.261840561809293e-19,4.188971289841444e-20)
    sum e = 2.3984514571537463e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03964201190011431 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0376e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2822.202937595229 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.043739180363671, dt = 0.03964201190011431 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 288.87 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1712620358404863e-19,-2.1279929270181203e-20,-1.362898768313205e-20)
    sum a = (3.532205584495824e-20,-1.7924176770312973e-20,-4.3315101151739906e-20)
    sum e = 2.398452530193035e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.039642234683192265 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0604e+04 | 1536 |      1 | 5.019e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2843.4707933981826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.083381192263785, dt = 0.02955967097964418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 315.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1490503136066936e-19,-2.466475152817431e-20,-1.6598212947882482e-20)
    sum a = (2.1294134318341867e-20,-5.1515663605507877e-20,-2.6372277543409932e-20)
    sum e = 2.398451308924891e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.03964240617877078 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0828e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2135.810561969714 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 214                                                     [SPH][rank=0]
Info: time since start : 173.540441055 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010750150000000001 s
sph::RenderFieldGetter compute custom field took :  0.00093238 s
rho_t_ampl=0.000680209, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00042158, eps_t_phi=6.28319 rad
vx_t_ampl=-5.3215e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 8.112940863243429, dt = 0.03964240617877078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.14 us    (2.3%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 380.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.138215327151185e-19,-2.720398985785494e-20,-1.739326134046056e-20)
    sum a = (-7.259779518517538e-20,-1.0867968057727225e-19,-3.6183967901310166e-21)
    sum e = 2.3984544141399485e-10
    sum de = -6.2038545941477076e-24
Info: cfl dt = 0.03964263800797227 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0223e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808.0937437498606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.1525832694222, dt = 0.03964263800797227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 296.10 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1999747499475843e-19,-3.2641825137817006e-20,-1.708569484310349e-20)
    sum a = (1.5066387259711527e-19,1.194676822488333e-19,-5.3186015202271244e-20)
    sum e = 2.3984558686156933e-10
    sum de = -1.0339757656912846e-23
Info: cfl dt = 0.039642877152574675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0505e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834.2991811139564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.192225907430172, dt = 0.039642877152574675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 277.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.088374389455845e-19,-2.3385741689037836e-20,-2.0176637086818357e-20)
    sum a = (1.1052024777945568e-19,8.830116180212155e-20,-1.1451724674305255e-20)
    sum e = 2.3984573004011915e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.039643122061514775 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9840e+04 | 1536 |      1 | 5.147e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2772.5384161782154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.231868784582748, dt = 0.039643122061514775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.8%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 285.52 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.052077184829891e-19,-2.0501587860349934e-20,-1.980338552966578e-20)
    sum a = (-6.930666804931463e-20,4.6458443266468036e-20,5.98791822064977e-21)
    sum e = 2.398458820190612e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03964337263507883 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0522e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835.910393001561 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.271511906644262, dt = 0.03964337263507883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 315.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1181706022084938e-19,-1.9488955739980485e-20,-1.922032331034371e-20)
    sum a = (-2.179525244190914e-20,-3.288207925719079e-20,-3.700348515537895e-20)
    sum e = 2.398460424129969e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03964362876924828 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0534e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.997456478807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.31115527927934, dt = 0.03964362876924828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.8%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 271.73 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1165453542401676e-19,-2.2363904062597788e-20,-2.1539437851077828e-20)
    sum a = (1.7044788067822062e-20,-1.6805766474449644e-20,-1.993532856996702e-21)
    sum e = 2.398462108655774e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.03964389035928445 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0689e+04 | 1536 |      1 | 5.005e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2851.419535844278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.350798908048588, dt = 0.03964389035928445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.8%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 271.46 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1013763732024554e-19,-2.2710671243860636e-20,-2.092450847302142e-20)
    sum a = (5.466927853457589e-20,1.060494403311685e-19,-6.972831235081833e-21)
    sum e = 2.398463870156841e-10
    sum de = -1.075334796318936e-23
Info: cfl dt = 0.03964415729965211 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9950e+04 | 1536 |      1 | 5.129e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782.8065794762497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.390442798407873, dt = 0.03964415729965211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.3%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 329.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0710384111270311e-19,-1.6070088981088353e-20,-2.1299639870808447e-20)
    sum a = (-5.642996383359605e-20,-6.854983839275879e-20,2.1392949292869597e-20)
    sum e = 2.3984657049905453e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03964442948405275 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0680e+04 | 1536 |      1 | 5.007e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.662119184777 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.430086955707525, dt = 0.03964442948405275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 296.07 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1197958501768202e-19,-2.224698355445973e-20,-1.9889259868524283e-20)
    sum a = (8.854215494110985e-20,-5.0469394519664407e-20,1.770923521963201e-20)
    sum e = 2.3984676094860426e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03964470680545737 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9993e+04 | 1536 |      1 | 5.121e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2786.8069817466985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.469731385191578, dt = 0.029539995349159298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.4%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.3%)
   LB compute        : 280.10 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0661626672220523e-19,-2.3380371810496654e-20,-1.943914851390144e-20)
    sum a = (-1.8954454430605464e-20,6.72122988614687e-20,3.213440656104548e-20)
    sum e = 2.398461534498792e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.0396449180111571 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0640e+04 | 1536 |      1 | 5.013e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2121.309445943932 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 224                                                     [SPH][rank=0]
Info: time since start : 174.54185810700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00113081 s
sph::RenderFieldGetter compute custom field took :  0.001042194 s
rho_t_ampl=0.00056307, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00041444, eps_t_phi=6.28319 rad
vx_t_ampl=-5.10792e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8.89s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 8.499271380540737, dt = 0.0396449180111571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.98 us    (2.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 342.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0818733975825398e-19,-1.89772301223491e-20,-1.7952122853288977e-20)
    sum a = (-4.3753029680650914e-20,1.0178075722737972e-19,3.368733104518243e-20)
    sum e = 2.398470723880914e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.039645202745036814 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0192e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805.3594391692245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.538916298551895, dt = 0.039645202745036814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 332.61 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1002928745569047e-19,-1.4258773398679905e-20,-1.6585799002130875e-20)
    sum a = (-3.193612257761178e-20,-2.1432302880362704e-20,3.258171588187687e-21)
    sum e = 2.398472982120644e-10
    sum de = 9.098986738083304e-24
Info: cfl dt = 0.039645493613279695 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0322e+04 | 1536 |      1 | 5.066e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2817.4924217108614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.578561501296932, dt = 0.039645493613279695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 300.39 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1235880954362481e-19,-1.755106444910131e-20,-1.7059812279259718e-20)
    sum a = (2.840798011303677e-20,1.7871057792907428e-19,2.8164450077659783e-20)
    sum e = 2.3984751143759087e-10
    sum de = 1.1580528575742387e-23
Info: cfl dt = 0.039645789210861856 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0646e+04 | 1536 |      1 | 5.012e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2847.567171344426 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.618206994910212, dt = 0.039645789210861856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 314.25 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0905413867469468e-19,-6.496230404647991e-21,-1.544949957585086e-20)
    sum a = (5.105310180504987e-20,-5.3410753757035636e-20,-6.376553327506675e-20)
    sum e = 2.398477298803538e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.03964608942872497 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0828e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2864.5294939912187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.657852784121074, dt = 0.03964608942872497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.71 us    (2.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 301.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0677879151903786e-19,-1.3214054270081616e-20,-1.979987198162949e-20)
    sum a = (-5.1141136070000884e-20,5.828488983969886e-21,2.6946072247124813e-21)
    sum e = 2.3984795314629015e-10
    sum de = -4.549493369041652e-24
Info: cfl dt = 0.039646394156191214 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0936e+04 | 1536 |      1 | 4.965e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.551359767499 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.6974988735498, dt = 0.039646394156191214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.7%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 290.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1149201062718413e-19,-1.1810849456803021e-20,-1.837559818464528e-20)
    sum a = (4.8865788914344064e-20,-4.0487574796633593e-20,1.1552222555421654e-20)
    sum e = 2.398481808619022e-10
    sum de = 1.6957202557337067e-23
Info: cfl dt = 0.0396467032821641 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0756e+04 | 1536 |      1 | 4.994e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2857.8761494449222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.73714526770599, dt = 0.0396467032821641 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (1.3%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 292.56 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0742889070636838e-19,-1.4336015001341246e-20,-1.774200439039975e-20)
    sum a = (-1.4298796188004087e-19,-7.02178771673882e-20,1.1918587505104726e-20)
    sum e = 2.398484126528496e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.0396470166950706 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0913e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2872.472155508754 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.776791970988155, dt = 0.0396470166950706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 318.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1690950385493845e-19,-1.770806065177085e-20,-1.7262205371373675e-20)
    sum a = (1.833821457594841e-20,1.4093254663100283e-19,-8.340475057894096e-20)
    sum e = 2.3984864814556145e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.03964733428289351 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0675e+04 | 1536 |      1 | 5.007e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.4296746396126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.816438987683226, dt = 0.03964733428289351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 281.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.128463839341227e-19,-7.935437211495793e-21,-2.2458624386584215e-20)
    sum a = (3.259299363147699e-20,-1.2204859210902506e-19,-3.085232120163314e-20)
    sum e = 2.3984888696772335e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.03964765593320412 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1004e+04 | 1536 |      1 | 4.954e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2881.042148669966 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.856086321966119, dt = 0.02951557587192255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 286.36 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.109502613044087e-19,-1.6750264778770224e-20,-2.232746654638711e-20)
    sum a = (-3.0297330876216094e-20,-3.407070550951449e-21,-6.527729081341123e-20)
    sum e = 2.3984754562715343e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.03964789908291178 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0737e+04 | 1536 |      1 | 4.997e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2126.307687311021 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 234                                                     [SPH][rank=0]
Info: time since start : 175.357049423 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001018751 s
sph::RenderFieldGetter compute custom field took :  0.000940224 s
rho_t_ampl=0.000452023, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000404094, eps_t_phi=6.28319 rad
vx_t_ampl=-4.78039e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.27s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 8.885601897838042, dt = 0.03964789908291178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.45 us    (2.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 339.80 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1376735778284093e-19,-1.5135650757111684e-20,-2.5423610386196563e-20)
    sum a = (4.998991875910309e-20,7.711641488791814e-20,1.419345043082756e-20)
    sum e = 2.3984926656416016e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03964822642778667 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0259e+04 | 1536 |      1 | 5.076e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811.7881412112993 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.925249796920953, dt = 0.03964822642778667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.7%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 283.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (61.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.099751125234129e-19,-1.0481579670729375e-20,-2.3285441285273715e-20)
    sum a = (-6.120412974055456e-20,2.412775292768585e-20,5.607612395962425e-20)
    sum e = 2.398495343241132e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.0396485586453493 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0694e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2852.2372337846687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.96489802334874, dt = 0.0396485586453493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 321.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1436328203789393e-19,-1.0576359349611424e-20,-2.0231816934123355e-20)
    sum a = (9.89979168706757e-20,1.9536028768160593e-20,6.084239045626754e-20)
    sum e = 2.39849782361633e-10
    sum de = -1.2407709188295415e-23
Info: cfl dt = 0.03964889450262569 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0819e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863.8623576041446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.00454658199409, dt = 0.03964889450262569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.7%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 289.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0748306563864592e-19,-9.893300218131579e-21,-1.7724995615277526e-20)
    sum a = (-3.380515774118702e-20,4.8901447850709667e-20,5.554800732538341e-20)
    sum e = 2.398500319685223e-10
    sum de = -5.37667398159468e-24
Info: cfl dt = 0.039649233884425684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 1536 |      1 | 5.122e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2786.5230393246184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.044195476496716, dt = 0.039649233884425684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 346.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1192541008540448e-19,-7.371679322482608e-21,-1.562751790012726e-20)
    sum a = (1.7207312864654692e-20,-5.1819074452734085e-20,5.95974958287059e-20)
    sum e = 2.398502828074992e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.0396495766765085 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9905e+04 | 1536 |      1 | 5.136e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2779.03616872211 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9.083844710381141, dt = 0.0396495766765085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.4%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 337.27 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0954171306519257e-19,-1.1421493583661831e-20,-1.3184222861148718e-20)
    sum a = (4.714573481453206e-20,4.3957662269293945e-20,-8.297409680363024e-21)
    sum e = 2.39850534525703e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03964992276450837 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0319e+04 | 1536 |      1 | 5.066e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2817.5407907325052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.12349428705765, dt = 0.03964992276450837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.1%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 345.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0751015310478469e-19,-7.781112721795018e-21,-1.485921664508271e-20)
    sum a = (5.227880964782929e-21,9.736415501303423e-20,-4.2918392451419063e-20)
    sum e = 2.3985078677291367e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03965027203389465 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3344e+04 | 1536 |      1 | 6.580e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2169.3490407067898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.163144209822159, dt = 0.03965027203389465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 300.70 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.080789898936989e-19,-2.86166911558443e-21,-1.7247302227493536e-20)
    sum a = (-9.411540109916211e-20,-1.2392775169665634e-20,-2.9673834158739824e-20)
    sum e = 2.3985103920324044e-10
    sum de = -8.271806125530277e-24
Info: cfl dt = 0.039650624370003926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3288e+04 | 1536 |      1 | 6.596e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2164.1741712212192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.202794481856053, dt = 0.039650624370003926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 299.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1355065805373078e-19,-5.527668321961346e-21,-1.8161313109702696e-20)
    sum a = (6.479321900394179e-20,-2.2929583588603553e-20,-3.604438163087606e-20)
    sum e = 2.398512914754333e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.039650979658070386 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2917e+04 | 1536 |      1 | 6.703e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2129.66615587234 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9.242445106226057, dt = 0.029487308909290633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.4%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 321.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0816025229211521e-19,-6.412534366695771e-21,-1.935046301771752e-20)
    sum a = (-3.579608650238674e-20,-1.0188865781099466e-19,5.1487205074292667e-20)
    sum e = 2.3984908830703806e-10
    sum de = -9.512577044359818e-24
Info: cfl dt = 0.039651246665008834 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4376e+04 | 1536 |      1 | 6.301e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1684.6597696568722 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 244                                                     [SPH][rank=0]
Info: time since start : 176.239647538 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009895960000000001 s
sph::RenderFieldGetter compute custom field took :  0.000932409 s
rho_t_ampl=0.000349457, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000390983, eps_t_phi=6.28319 rad
vx_t_ampl=-4.35416e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.66s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 9.271932415135348, dt = 0.039651246665008834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 366.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1149201062718413e-19,-1.1617269303283948e-20,-1.6018395680979258e-20)
    sum a = (-1.0843112695350294e-19,-2.2900281646883344e-20,-5.205614722409462e-20)
    sum e = 2.398516849356817e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03965160589331909 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9608e+04 | 1536 |      1 | 5.188e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2751.572080460265 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.311583661800357, dt = 0.03965160589331909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.4%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 318.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1720746598246494e-19,-1.0959234334858085e-20,-2.0135317016285073e-20)
    sum a = (1.4776212778699937e-20,1.6457789293230722e-20,-5.888398785899809e-20)
    sum e = 2.398519571261363e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.03965196868723572 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9951e+04 | 1536 |      1 | 5.128e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2783.406949378085 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.351235267693676, dt = 0.03965196868723572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.5%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 276.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1452580683472654e-19,-9.52666713152672e-21,-2.2605550482029197e-20)
    sum a = (-8.975431905081988e-20,-7.53742821638009e-20,-7.604369790031526e-20)
    sum e = 2.398522059459827e-10
    sum de = 1.0339757656912846e-23
Info: cfl dt = 0.03965233400645992 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0582e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2842.070576255227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.390887236380912, dt = 0.03965233400645992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 277.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2005164992703597e-19,-1.4335724022701083e-20,-2.5961068732876588e-20)
    sum a = (7.630539211291975e-20,3.2107890492810825e-20,1.108883605075585e-20)
    sum e = 2.3985245298153717e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03965270173283182 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0343e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2819.9428913838233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.430539570387372, dt = 0.03965270173283182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 288.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.132526959262043e-19,-1.093180298487185e-20,-2.379386225486559e-20)
    sum a = (-7.58719926546994e-20,-4.516882510662359e-21,-8.305155423241965e-20)
    sum e = 2.398526980031599e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03965307175154288 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0414e+04 | 1536 |      1 | 5.050e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826.5680129148077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.470192272120205, dt = 0.03965307175154288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 270.10 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1923902594287282e-19,-1.1838677595844025e-20,-2.895357190237579e-20)
    sum a = (1.4004219993744945e-19,8.72026364244091e-20,-1.4388668965329805e-20)
    sum e = 2.3985294070990514e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.039653443947938585 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0797e+04 | 1536 |      1 | 4.988e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2862.1568666384414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.509845343871747, dt = 0.039653443947938585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 271.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0929792586994362e-19,-6.559663748203434e-21,-2.816278502259598e-20)
    sum a = (-5.531260585537172e-20,6.98786047527192e-20,-2.1934212581919604e-20)
    sum e = 2.398531808064119e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.03965381820749732 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9788e+04 | 1536 |      1 | 5.156e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2768.414528825487 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.549498787819687, dt = 0.03965381820749732 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 270.15 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1547386814958356e-19,-4.13321932049128e-21,-2.91821636962733e-20)
    sum a = (-2.219817850072337e-20,-1.1358129554194392e-19,3.0195642798924355e-20)
    sum e = 2.398534180043252e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.039654194415859836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0391e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824.454547280017 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.589152606027184, dt = 0.039654194415859836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.5%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 276.86 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1582600520938759e-19,-1.227250029572279e-20,-2.695120590198552e-20)
    sum a = (-1.1598853000622023e-19,7.559497437611371e-20,-7.278500579799941e-20)
    sum e = 2.3985365202259973e-10
    sum de = -9.098986738083304e-24
Info: cfl dt = 0.03965457245885861 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0190e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805.8555848161245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.628806800443044, dt = 0.029456131989610057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 297.31 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.210809736403093e-19,-6.296063552819783e-21,-3.113697796990211e-20)
    sum a = (-1.8744526568029985e-20,4.0768582458507426e-20,3.672275298445601e-20)
    sum e = 2.398505767689549e-10
    sum de = -9.098986738083304e-24
Info: cfl dt = 0.0396548551426225 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0521e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2107.127307314812 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 254                                                     [SPH][rank=0]
Info: time since start : 177.059932631 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009330100000000001 s
sph::RenderFieldGetter compute custom field took :  0.000856298 s
rho_t_ampl=0.000257398, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000375591, eps_t_phi=6.28319 rad
vx_t_ampl=-3.84602e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.04s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 9.658262932432654, dt = 0.0396548551426225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.74 us    (2.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 317.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2075592404664402e-19,-5.1912970139333964e-21,-2.80679050215752e-20)
    sum a = (1.303313433266998e-19,1.8527170318362943e-19,-5.456491239851372e-20)
    sum e = 2.3985401081672534e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.039655235380833584 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2570e+04 | 1536 |      1 | 6.805e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2097.6878036951694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.697917787575276, dt = 0.039655235380833584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 301.00 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.120066724838208e-19,5.020809983401773e-21,-3.204168903980537e-20)
    sum a = (-9.765031543027181e-21,-5.1081377158421356e-20,-2.3711317460815073e-20)
    sum e = 2.398542543485119e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03965561786639911 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2831e+04 | 1536 |      1 | 6.728e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2121.9194889295864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.73757302295611, dt = 0.03965561786639911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 302.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1517590602205708e-19,-1.6921466029600428e-21,-3.2370222699343514e-20)
    sum a = (1.743078446029956e-20,-1.3073113475198137e-19,2.743749146647731e-20)
    sum e = 2.3985447424829924e-10
    sum de = 4.963083675318166e-24
Info: cfl dt = 0.03965600176672981 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3212e+04 | 1536 |      1 | 6.617e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2157.3676046018163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.777228640822509, dt = 0.03965600176672981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 305.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1401114497808988e-19,-8.453088212345033e-21,-3.0267992678700803e-20)
    sum a = (-1.515679167794968e-19,-1.4853327078206207e-21,1.4613446995096155e-20)
    sum e = 2.3985468959260823e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03965638696374126 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3940e+04 | 1536 |      1 | 6.416e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2225.061128256752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.816884642589239, dt = 0.03965638696374126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 290.67 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2362719545735382e-19,-5.950433833513933e-21,-2.99427513348976e-20)
    sum a = (-2.5042362445294394e-20,5.986978601444307e-20,3.946601538850016e-20)
    sum e = 2.3985490029256366e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.039656773344891656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4013e+04 | 1536 |      1 | 6.397e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2231.8737353360057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.85654102955298, dt = 0.039656773344891656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 296.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.221102973535826e-19,-2.3590696462126904e-21,-2.788487497318191e-20)
    sum a = (7.570946785786677e-20,-1.2687568760927984e-19,1.5270747975542781e-21)
    sum e = 2.3985510612170116e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.039657160798052725 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4057e+04 | 1536 |      1 | 6.385e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2235.960024994026 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.896197802897872, dt = 0.039657160798052725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.5%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 291.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1742416571157512e-19,-1.1092634815070806e-20,-2.857658350636646e-20)
    sum a = (6.854483306416167e-20,3.17312785748005e-20,3.2764209411642742e-21)
    sum e = 2.3985530686137766e-10
    sum de = -9.926167350636332e-24
Info: cfl dt = 0.03965754921150721 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3895e+04 | 1536 |      1 | 6.428e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2220.9174399892727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.935854963695924, dt = 0.03965754921150721 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 310.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1457998176700408e-19,-6.690418968051041e-21,-2.841196163100042e-20)
    sum a = (-2.9444075692844785e-20,-9.317523009998792e-20,1.601419797739694e-21)
    sum e = 2.3985550230167167e-10
    sum de = -9.512577044359818e-24
Info: cfl dt = 0.03965793847397548 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3865e+04 | 1536 |      1 | 6.436e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2218.1962586650684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.97551251290743, dt = 0.03965793847397548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 328.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1802008996662809e-19,-1.2862604977972515e-20,-2.8381665843328336e-20)
    sum a = (5.976849403519965e-20,4.275974929314e-21,9.5110380709695e-21)
    sum e = 2.398556922414849e-10
    sum de = 5.790264287871194e-24
Info: cfl dt = 0.03965832847464349 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3905e+04 | 1536 |      1 | 6.425e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2221.929231266644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.015170451381406, dt = 0.02942299834855433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.4%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 298.04 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1414658230878375e-19,-1.0802952352487126e-20,-2.794498300845582e-20)
    sum a = (9.032315583973408e-20,1.7482634043387393e-20,-4.2218594427558384e-20)
    sum e = 2.3985183892556283e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.0396586187744446 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4003e+04 | 1536 |      1 | 6.399e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1655.2245679788841 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 264                                                     [SPH][rank=0]
Info: time since start : 178.02431001300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001032497 s
sph::RenderFieldGetter compute custom field took :  0.000805673 s
rho_t_ampl=0.000177483, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000358427, eps_t_phi=6.28319 rad
vx_t_ampl=-3.27378e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.43s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 10.04459344972996, dt = 0.0396586187744446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.08 us   (5.1%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 339.95 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (75.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1048977438004957e-19,-9.915864289046006e-21,-3.038033459584021e-20)
    sum a = (9.825978341839418e-20,-7.32514125687915e-20,-1.0115613329809276e-21)
    sum e = 2.3985597758623824e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.03965900927720052 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3216e+04 | 1536 |      1 | 6.616e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2157.949483426714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.084252068504405, dt = 0.03965900927720052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 338.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0602034246715225e-19,-1.4620724374438513e-20,-2.96033451079699e-20)
    sum a = (-1.0589844886952777e-19,2.3930543807603384e-20,6.295377119888752e-20)
    sum e = 2.3985616643549266e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.039659400730494135 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3224e+04 | 1536 |      1 | 6.614e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2158.7106785035717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.123911077781605, dt = 0.039659400730494135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.6%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 306.98 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1463415669928164e-19,-1.174514118933358e-20,-2.583823541034912e-20)
    sum a = (-6.575482405186818e-20,-1.1076283799438943e-22,6.7376302452398966e-21)
    sum e = 2.3985633437668833e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.039659792518794874 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4229e+04 | 1536 |      1 | 6.339e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2252.1392085507573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.1635704785121, dt = 0.039659792518794874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 298.15 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1596144254008146e-19,-1.2225837902882172e-20,-2.6685771623552932e-20)
    sum a = (-2.1940847572405038e-21,1.047369828280029e-19,9.834627053724973e-20)
    sum e = 2.3985649577183565e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039660184526969545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5312e+04 | 1536 |      1 | 6.068e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2352.7912585652043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.203230271030893, dt = 0.039660184526969545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 276.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1498629375908567e-19,-5.992255399886392e-21,-2.0968750553051798e-20)
    sum a = (-1.276632279120308e-19,-5.239717347615406e-20,-6.232169017378186e-20)
    sum e = 2.3985665068725557e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966057664736833 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0526e+04 | 1536 |      1 | 5.032e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837.524144452281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.242890455557863, dt = 0.03966057664736833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.8%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 285.39 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2248952187952542e-19,-1.1186911894483484e-20,-2.6626525207670037e-20)
    sum a = (3.9967556287757577e-20,-5.859711653374423e-20,3.56952528194584e-21)
    sum e = 2.398567989835572e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.03966096877299749 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0477e+04 | 1536 |      1 | 5.040e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832.9488079078465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.28255103220523, dt = 0.03966096877299749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 22.02 us   (6.7%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 287.95 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1777630277137914e-19,-1.3635893940506414e-20,-2.517831257644012e-20)
    sum a = (5.498755626170645e-21,1.5625321516448927e-21,3.062067209364162e-20)
    sum e = 2.398569405307308e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03966136079752737 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0371e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823.159050838399 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.322212000978228, dt = 0.03966136079752737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 304.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1796591503435055e-19,-1.238066499205232e-20,-2.3427417708184796e-20)
    sum a = (-6.628302964157423e-20,8.890556411664472e-21,-5.0069329778275225e-20)
    sum e = 2.398570752080951e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.039661752615317854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0192e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2806.4991899001757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.361873361775755, dt = 0.039661752615317854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.7%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 276.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2224573468427647e-19,-1.1882403749679367e-20,-2.7013392717960557e-20)
    sum a = (2.5177799775988252e-20,-2.115810841721677e-20,7.599899973492222e-21)
    sum e = 2.3985720290432856e-10
    sum de = -5.583469134732937e-24
Info: cfl dt = 0.039662144121442734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0743e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2857.7616177628183 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.401535114391073, dt = 0.029388852636191842 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.4%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 305.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1972660033337072e-19,-1.3099488043668511e-20,-2.5646409015623673e-20)
    sum a = (9.458943175659061e-20,-8.471031344059151e-20,2.333016884139202e-20)
    sum e = 2.398527480218157e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.039662434291590665 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0408e+04 | 1536 |      1 | 5.051e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2094.4851423571763 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 274                                                     [SPH][rank=0]
Info: time since start : 178.89790180900002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000899968 s
sph::RenderFieldGetter compute custom field took :  0.0008000220000000001 s
rho_t_ampl=0.000110946, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000340017, eps_t_phi=6.28319 rad
vx_t_ampl=-2.65576e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.82s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 10.430923967027265, dt = 0.039662434291590665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.86 us    (2.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 348.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1474250656383672e-19,-1.7393433383944143e-20,-2.448993045009713e-20)
    sum a = (5.3727989086253574e-20,-2.98499148446361e-20,-6.938944626550438e-20)
    sum e = 2.398573883172038e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.03966282469745059 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3942e+04 | 1536 |      1 | 6.415e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2225.6401030837956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.470586401318856, dt = 0.03966282469745059 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (0.6%)
   patch tree reduce : 1.31 us    (0.2%)
   gen split merge   : 751.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.2%)
   LB compute        : 733.04 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1379444524897973e-19,-1.7488530494070007e-20,-2.908085471404406e-20)
    sum a = (-2.089798012606233e-20,3.8826976230103e-20,-4.4725658959203194e-20)
    sum e = 2.398575051841334e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03966321480894661 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4024e+04 | 1536 |      1 | 6.394e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2233.240784753967 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.510249226016306, dt = 0.03966321480894661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 302.31 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1574474281097128e-19,-1.4587208925612513e-20,-3.036570039666446e-20)
    sum a = (1.00535130574051e-19,-4.85517684031136e-20,8.05254511984191e-20)
    sum e = 2.3985760621010627e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03966360423126054 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3928e+04 | 1536 |      1 | 6.419e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2224.3746457080324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.549912440825253, dt = 0.03966360423126054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 329.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0954171306519257e-19,-1.8245709820980357e-20,-2.4687839926163516e-20)
    sum a = (-1.3352766433107487e-19,2.918458722404116e-20,2.723011288113138e-20)
    sum e = 2.3985769957948203e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.0396639928548861 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4091e+04 | 1536 |      1 | 6.376e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2239.5702584148853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.589576045056512, dt = 0.0396639928548861 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 301.37 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1959116300267685e-19,-1.554659195483221e-20,-2.46647275265998e-20)
    sum a = (-1.106658429099516e-19,-4.84118721554168e-20,-6.118737402817459e-20)
    sum e = 2.398577855098901e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039664380579459514 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4461e+04 | 1536 |      1 | 6.279e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2273.9706241411113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.629240037911398, dt = 0.039664380579459514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 294.55 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.233563207959661e-19,-1.90050053561828e-20,-2.884518210121972e-20)
    sum a = (1.8407287614602278e-19,6.570977857442575e-20,6.173552169127335e-20)
    sum e = 2.398578639522155e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.039664767305476606 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3647e+04 | 1536 |      1 | 6.495e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2198.3388850653314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.668904418490857, dt = 0.039664767305476606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 328.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.099886562564823e-19,-1.4134525519330482e-20,-2.3958626739984818e-20)
    sum a = (3.893823257448425e-20,1.2870327980937238e-19,2.399187915546115e-20)
    sum e = 2.398579348669369e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.03966515293432573 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4767e+04 | 1536 |      1 | 6.202e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2302.450224257229 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.708569185796334, dt = 0.03966515293432573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 299.18 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.115190980933229e-19,-7.780424954100088e-21,-2.3755531583318206e-20)
    sum a = (-1.009008113669244e-19,5.525535746120746e-20,-7.188837064916574e-20)
    sum e = 2.3985799822355004e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039665537368307885 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4033e+04 | 1536 |      1 | 6.391e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2234.258322844946 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.74823433873066, dt = 0.039665537368307885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.4%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 293.41 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1831805209415457e-19,-7.045862603311465e-21,-2.85085748215991e-20)
    sum a = (1.3222746595641383e-19,9.350090380977058e-20,5.2663698553380434e-20)
    sum e = 2.39858054000492e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03966592051065779 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5542e+04 | 1536 |      1 | 6.014e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2374.5137599990726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.787899876098967, dt = 0.029354608225606427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.8%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 292.03 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0994802505727413e-19,-3.543141090845207e-21,-2.4492440205222646e-20)
    sum a = (-7.126712341110822e-20,6.380741313025006e-20,-9.482938620387951e-20)
    sum e = 2.398532292510731e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.03966620329549889 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0518e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2099.6090745096812 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 284                                                     [SPH][rank=0]
Info: time since start : 179.832192604 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010124490000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008937680000000001 s
rho_t_ampl=5.86067e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000320883, eps_t_phi=6.28319 rad
vx_t_ampl=-2.01033e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.20s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 10.817254484324573, dt = 0.03966620329549889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.73 us    (2.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 335.41 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1556867428106926e-19,-1.4479361660526796e-21,-3.0418762776283506e-20)
    sum a = (7.489684387370362e-21,-1.867671201199482e-21,-1.5538462026963697e-20)
    sum e = 2.398581263496633e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.039666583860573375 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4186e+04 | 1536 |      1 | 6.351e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2248.500287329509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.856920687620072, dt = 0.039666583860573375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.5%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 300.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.136183767190777e-19,-2.8239741553815494e-21,-2.9462535524408136e-20)
    sum a = (5.929446337777114e-20,-1.1487379579562053e-19,2.0500435198143598e-20)
    sum e = 2.398581632815317e-10
    sum de = 3.5155176033503676e-24
Info: cfl dt = 0.03966696296617067 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4118e+04 | 1536 |      1 | 6.369e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2242.1843640894226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.896587271480644, dt = 0.03966696296617067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 303.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.103814245154945e-19,-9.621764241652585e-21,-2.793457555108716e-20)
    sum a = (9.381743897163562e-20,-8.365642517825263e-20,8.153248716049617e-20)
    sum e = 2.398581909876887e-10
    sum de = -3.1019272970738538e-24
Info: cfl dt = 0.03966734043624134 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3728e+04 | 1536 |      1 | 6.473e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2205.9900877358714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.936254234446816, dt = 0.03966734043624134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 339.69 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0593908006873594e-19,-1.2321173086440896e-20,-2.3489920553817828e-20)
    sum a = (7.814733981035622e-21,-1.355895538548565e-19,-2.6349199992819663e-20)
    sum e = 2.3985821080950896e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03966771616930198 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3652e+04 | 1536 |      1 | 6.494e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2198.9737060563634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.975921574883056, dt = 0.03966771616930198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 299.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0738825950716023e-19,-1.8730665403716785e-20,-2.6674822945987453e-20)
    sum a = (8.995747504686066e-20,-2.739285979463639e-20,5.0962557480729755e-20)
    sum e = 2.398582230969213e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03966809007437045 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4566e+04 | 1536 |      1 | 6.253e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2283.946799545678 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.015589291052358, dt = 0.03966809007437045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 307.82 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0217392227544668e-19,-1.7671397343110367e-20,-2.3119845199420076e-20)
    sum a = (5.607105490725732e-21,-8.077923499747589e-20,-4.5154779620012105e-20)
    sum e = 2.3985822788473225e-10
    sum de = 0
Info: cfl dt = 0.03966846206149049 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4801e+04 | 1536 |      1 | 6.193e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2305.778353637641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.055257381126728, dt = 0.03966846206149049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 303.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0350120811624649e-19,-2.1934366684510507e-20,-2.681746145457457e-20)
    sum a = (4.5845536439871024e-20,-1.854172437556303e-20,4.909312151162269e-20)
    sum e = 2.398582252168876e-10
    sum de = 4.342698215903395e-24
Info: cfl dt = 0.03966883204179824 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1241e+04 | 1536 |      1 | 4.917e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2904.5487348377824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.094925843188218, dt = 0.03966883204179824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.4%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 299.31 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0115814229524274e-19,-2.1434650548936745e-20,-2.3000660017721662e-20)
    sum a = (2.3457745676176252e-20,8.464264437387642e-20,4.541389132543002e-21)
    sum e = 2.398582151451725e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03966919992752692 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1711e+04 | 1536 |      1 | 4.844e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2948.288264225079 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.134594675230016, dt = 0.03966919992752692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 285.58 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0069765537088362e-19,-1.6031335916739426e-20,-2.3704164338730182e-20)
    sum a = (2.4785031516976063e-21,1.6394479739593927e-19,-1.450724620162924e-20)
    sum e = 2.3985819772907834e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.03966956563203443 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1659e+04 | 1536 |      1 | 4.852e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2943.5179863248286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.174263875157543, dt = 0.02932112646433538 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 280.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0088726763385502e-19,-9.651814399400283e-21,-2.4507355200971307e-20)
    sum a = (-3.834230831943128e-20,9.642459932105375e-20,-4.3699608475645603e-20)
    sum e = 2.398532604365197e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.03966983441749815 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7059e+04 | 1536 |      1 | 5.676e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1859.5617163453103 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 294                                                     [SPH][rank=0]
Info: time since start : 180.73054846300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001024902 s
sph::RenderFieldGetter compute custom field took :  0.0009353850000000001 s
rho_t_ampl=2.08772e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000301535, eps_t_phi=6.28319 rad
vx_t_ampl=-1.35539e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.59s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.203585001621878, dt = 0.03966983441749815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.63 us    (2.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 350.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0298654625960983e-19,-6.81548687811365e-21,-2.6668887906328938e-20)
    sum a = (1.1774921530524037e-19,-2.0035785615944664e-20,-2.2264943178842176e-20)
    sum e = 2.398581568627411e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.03967019622259485 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1044e+04 | 1536 |      1 | 4.948e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2886.3535270928396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.243254836039377, dt = 0.03967019622259485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 292.86 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.522598721085174e-20,-9.919964442611933e-21,-2.712698775955168e-20)
    sum a = (-1.1039496824856387e-19,4.1360003157788795e-20,2.171994744938765e-20)
    sum e = 2.3985811490238087e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.03967055550756998 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1709e+04 | 1536 |      1 | 4.844e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2948.2146020363793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.282925032261971, dt = 0.03967055550756998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.18 us   (8.0%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 286.91 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0405650117209131e-19,-7.061839975916756e-21,-2.5392900757612615e-20)
    sum a = (-5.3985320014571906e-20,-1.556493518217655e-20,-4.731433201207819e-20)
    sum e = 2.398580710249454e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03967077167853525 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1232e+04 | 1536 |      1 | 4.918e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2903.884832547404 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.322595587769541, dt = 0.03967077167853525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 287.98 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0526189341526665e-19,-8.809351878318643e-21,-2.8639210927639204e-20)
    sum a = (-1.5655201054903076e-19,3.580310801536839e-20,2.6811614816313418e-20)
    sum e = 2.3985801975936215e-10
    sum de = -1.34416849539867e-24
Info: cfl dt = 0.03967095299247044 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1362e+04 | 1536 |      1 | 4.898e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916.0225256730314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.362266359448077, dt = 0.03967095299247044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 283.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1336104579075937e-19,-6.369892769610126e-21,-2.6105251860559432e-20)
    sum a = (2.5326780839751495e-20,6.700472610726203e-21,-2.556210689566152e-20)
    sum e = 2.3985796161657644e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.03967113208460251 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1393e+04 | 1536 |      1 | 4.893e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2918.867237526151 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.401937312440547, dt = 0.03967113208460251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 279.39 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (61.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.087426328140988e-19,-6.682536092163e-21,-2.815818730561916e-20)
    sum a = (-4.3543101818075434e-20,-8.363018750200616e-20,5.982546785997016e-20)
    sum e = 2.3985789671969274e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039671308920976395 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1862e+04 | 1536 |      1 | 4.821e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2962.4752333847027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.44160844452515, dt = 0.039671308920976395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 286.95 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.117899727547106e-19,-1.1790348688973386e-20,-2.409112181054974e-20)
    sum a = (-3.138082952176696e-20,-1.0619347971791217e-19,1.7158549604372185e-20)
    sum e = 2.398578251820716e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039671412525476984 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1449e+04 | 1536 |      1 | 4.884e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2924.1252916312937 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.481279753446126, dt = 0.039671412525476984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 286.79 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1287347140026148e-19,-1.6451191641890388e-20,-2.4256744158276233e-20)
    sum a = (-2.5787267764110614e-20,4.5256470022314604e-20,1.3250130874068115e-20)
    sum e = 2.3985774708562944e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.039671503072050925 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1748e+04 | 1536 |      1 | 4.838e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2951.9370542840547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.520951165971603, dt = 0.039671503072050925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 267.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.138079889820491e-19,-1.1649462121927392e-20,-2.3808617796474374e-20)
    sum a = (-7.733471582619307e-20,-4.6585746421539164e-21,3.834377794306345e-21)
    sum e = 2.3985766258826515e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03967159157141585 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1764e+04 | 1536 |      1 | 4.836e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2953.3748546112383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.560622669043655, dt = 0.029292849875529825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 291.76 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1708557238484048e-19,-1.2775761080185808e-20,-2.3883066482003134e-20)
    sum a = (1.281372585694593e-19,-8.187762976545782e-20,-2.821427843711069e-20)
    sum e = 2.398528689041878e-10
    sum de = 7.237830359838992e-25
Info: cfl dt = 0.03967165558189319 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1689e+04 | 1536 |      1 | 4.847e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2175.5812668069734 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 304                                                     [SPH][rank=0]
Info: time since start : 181.535343067 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001025634 s
sph::RenderFieldGetter compute custom field took :  0.001042685 s
rho_t_ampl=-2.22213e-06, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000282456, eps_t_phi=6.28319 rad
vx_t_ampl=-7.07977e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.98s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.589915518919184, dt = 0.03967165558189319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.56 us    (2.0%)
   patch tree reduce : 1.39 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 413.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0899996374241714e-19,-1.715453992037066e-20,-2.547177185650058e-20)
    sum a = (-9.40205949676764e-20,1.4219013151446962e-19,-1.2414621583683421e-21)
    sum e = 2.398575195206408e-10
    sum de = 5.169878828456423e-26
Info: cfl dt = 0.03967170979200652 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0983e+04 | 1536 |      1 | 4.958e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2880.8428515058304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.629587174501077, dt = 0.03967170979200652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 326.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1709234425137517e-19,-7.068453126829542e-21,-2.498599464421845e-20)
    sum a = (4.920438224107871e-20,-5.032880306447789e-20,-1.0878935386954497e-20)
    sum e = 2.3985740739940695e-10
    sum de = -2.5849394142282115e-25
Info: cfl dt = 0.03967175597461906 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1216e+04 | 1536 |      1 | 4.921e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2902.496546127234 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.669258884293084, dt = 0.03967175597461906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 273.53 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1229447681154524e-19,-1.2883158651009453e-20,-2.5608748634676584e-20)
    sum a = (-4.7132191081462676e-20,-4.1817213265870626e-20,1.7972136949547092e-22)
    sum e = 2.398573005352191e-10
    sum de = 3.618915179919496e-25
Info: cfl dt = 0.03967180399529954 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1738e+04 | 1536 |      1 | 4.840e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2951.061874229989 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.708930640267702, dt = 0.03967180399529954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 280.93 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1612058140364673e-19,-1.4375826169836218e-20,-2.538226059761382e-20)
    sum a = (1.0626412966240119e-19,9.24183839105548e-20,-3.6520430632692546e-20)
    sum e = 2.398571875876744e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.03967180691510548 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1365e+04 | 1536 |      1 | 4.897e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916.297646231363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.748602444263001, dt = 0.03967180691510548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 309.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.088306670790498e-19,-8.046485241623296e-21,-2.755907268853552e-20)
    sum a = (-8.677469777555499e-20,3.1937465047247074e-20,7.1407004955924695e-22)
    sum e = 2.3985706904776613e-10
    sum de = 6.72084247699335e-25
Info: cfl dt = 0.03967180935472062 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1118e+04 | 1536 |      1 | 7.273e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1963.6045063666263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.788274251178107, dt = 0.03967180935472062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 310.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.160901080042406e-19,-7.977946545563182e-21,-2.679216427684611e-20)
    sum a = (4.96919566315766e-20,-1.2875976769118169e-20,2.9455218476267235e-20)
    sum e = 2.3985694509553065e-10
    sum de = -2.8434333556510326e-25
Info: cfl dt = 0.039671813838170596 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0165e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804.7571327824226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.827946060532827, dt = 0.039671813838170596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.6%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 266.43 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1143952866154026e-19,-9.377977046403639e-21,-2.5053515652373742e-20)
    sum a = (-2.670824161282885e-20,-2.4919658736683103e-21,2.5572532526256805e-21)
    sum e = 2.398568158954056e-10
    sum de = 2.5849394142282115e-26
Info: cfl dt = 0.0396718203511845 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0164e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804.663593957004 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.867617874370998, dt = 0.0396718203511845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 298.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1405177617729806e-19,-9.272457610439226e-21,-2.5485610295242865e-20)
    sum a = (-1.0447635689724227e-19,2.8351115281625455e-20,3.192416590208795e-20)
    sum e = 2.39856681614608e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03967182887902029 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0548e+04 | 1536 |      1 | 5.028e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.37131050066 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 11.907289694722182, dt = 0.03967182887902029 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 280.73 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1972236791678652e-19,-7.534918339613818e-21,-2.3636600807019973e-20)
    sum a = (-1.9232100958527873e-20,-2.3921998789980203e-20,6.564320123027587e-20)
    sum e = 2.398565424235534e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03967183940653965 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0268e+04 | 1536 |      1 | 5.075e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2814.364197836139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.946961523601203, dt = 0.02928451261528764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.7%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 278.68 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.185982380720275e-19,-9.27094981203111e-21,-2.1045423752720944e-20)
    sum a = (8.307725864761266e-20,-1.0497683685174646e-19,2.6523192823648495e-20)
    sum e = 2.398521245992511e-10
    sum de = -3.42504472385238e-25
Info: cfl dt = 0.03967184846838251 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0213e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2073.699470634592 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 314                                                     [SPH][rank=0]
Info: time since start : 182.55120821100002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001012609 s
sph::RenderFieldGetter compute custom field took :  0.0009332110000000001 s
rho_t_ampl=-1.104e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000264093, eps_t_phi=6.28319 rad
vx_t_ampl=-8.39086e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12.36s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.97624603621649, dt = 0.03967184846838251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (2.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 341.13 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1379571497395496e-19,-1.4623978044687603e-20,-2.0566004855978764e-20)
    sum a = (5.498755626170645e-21,4.721326169850252e-20,4.090299343389878e-20)
    sum e = 2.3985631742974e-10
    sum de = -1.5994312625537059e-25
Info: cfl dt = 0.039671862416947756 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0538e+04 | 1536 |      1 | 5.030e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839.4912917770607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.015917884684873, dt = 0.039671862416947756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 299.26 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1512765647299738e-19,-9.732150956688808e-21,-1.8658070292618428e-20)
    sum a = (3.9141388570525037e-20,5.987324634565818e-20,-6.187816696017308e-20)
    sum e = 2.3985615023566515e-10
    sum de = 3.8450973786644646e-25
Info: cfl dt = 0.039671878339049574 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1031e+04 | 1536 |      1 | 4.950e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2885.2473412132276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.05558974710182, dt = 0.039671878339049574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 317.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1290309831635077e-19,-7.104375762587796e-21,-2.3151653431212875e-20)
    sum a = (2.1304292118143906e-20,8.385664824186361e-20,3.5428902364658527e-20)
    sum e = 2.398559945888389e-10
    sum de = 6.333101564859118e-25
Info: cfl dt = 0.03967189620035217 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1242e+04 | 1536 |      1 | 4.916e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2904.9368371228043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.09526162544087, dt = 0.03967189620035217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.8%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 276.60 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1240282667610031e-19,-3.3005971679678654e-21,-1.9815944586218387e-20)
    sum a = (1.2731109085222677e-21,7.806565417028148e-20,-3.640613236085999e-20)
    sum e = 2.3985583454527704e-10
    sum de = 5.945360652724886e-25
Info: cfl dt = 0.03967191598391929 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1261e+04 | 1536 |      1 | 4.914e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2906.638822538001 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.134933521641221, dt = 0.03967191598391929 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 314.57 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1275327076927069e-19,-3.188067792035898e-22,-2.268516163113394e-20)
    sum a = (5.257677177535578e-20,1.7683300188109518e-19,4.1009571040657446e-20)
    sum e = 2.398556706317236e-10
    sum de = -4.652890945610781e-25
Info: cfl dt = 0.03967193767219252 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1427e+04 | 1536 |      1 | 4.887e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2922.145869731389 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.174605437625141, dt = 0.03967193767219252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.7%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 275.07 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0966022072954969e-19,8.655820966727402e-21,-1.9522617844258746e-20)
    sum a = (7.870263286620104e-20,1.2694265898857363e-19,-7.521111918477878e-20)
    sum e = 2.398555030347562e-10
    sum de = -4.652890945610781e-25
Info: cfl dt = 0.03967196124727182 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1670e+04 | 1536 |      1 | 4.850e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2944.7184145889564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.214277375297334, dt = 0.03967196124727182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.8%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 282.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0606097366636041e-19,1.2701561526944348e-20,-2.481174043932997e-20)
    sum a = (-4.2432515706385793e-20,-8.640145649790053e-20,-2.569310327203626e-20)
    sum e = 2.3985533194534436e-10
    sum de = 5.686866711302065e-25
Info: cfl dt = 0.03967198669087779 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1400e+04 | 1536 |      1 | 4.892e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2919.6301504265116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.253949336544606, dt = 0.03967198669087779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 313.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.10083462387968e-19,5.041654635078874e-21,-2.484879848621831e-20)
    sum a = (-3.381870147425641e-20,1.6120538064141633e-19,4.0654797678910147e-20)
    sum e = 2.3985515755594365e-10
    sum de = 0
Info: cfl dt = 0.039672013984358816 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1367e+04 | 1536 |      1 | 4.897e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916.569486325799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.293621323235485, dt = 0.039672013984358816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.7%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 285.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1128208276460864e-19,1.6348740707949506e-20,-2.191986426241981e-20)
    sum a = (5.677532902686539e-20,1.0419404479135088e-19,2.3940877208861083e-20)
    sum e = 2.398549800603367e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03967204310869839 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1284e+04 | 1536 |      1 | 4.910e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2908.8287457434426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.333293337219843, dt = 0.029283216293954695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 308.30 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0783181676518261e-19,1.8269649427284644e-20,-2.1550335820166613e-20)
    sum a = (4.7728115336515654e-20,-7.75550131093998e-20,3.3963740007469615e-20)
    sum e = 2.398511142209318e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03967206577784776 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1653e+04 | 1536 |      1 | 4.853e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2172.457205816844 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 183.355030217 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010896430000000002 s
sph::RenderFieldGetter compute custom field took :  0.000984838 s
rho_t_ampl=-6.26273e-06, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000246848, eps_t_phi=6.28319 rad
vx_t_ampl=5.02571e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12.75s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 12.362576553513797, dt = 0.03967206577784776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.66 us    (2.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 342.23 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0604404400002368e-19,1.2531444832863841e-20,-2.0056173262920382e-20)
    sum a = (-1.02255184673863e-20,1.211729658760816e-19,-2.6035930219726533e-20)
    sum e = 2.398546991512327e-10
    sum de = 2.5849394142282115e-24
Info: cfl dt = 0.039672044538764197 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1360e+04 | 1536 |      1 | 4.898e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2915.899325335817 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.402248619291646, dt = 0.039672044538764197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 325.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.076997653677561e-19,2.1280749300894387e-20,-2.2279227278146814e-20)
    sum a = (4.1809503985194047e-20,-1.284198715737172e-19,8.264730410761541e-20)
    sum e = 2.39854495637084e-10
    sum de = -7.754818242684634e-25
Info: cfl dt = 0.039671975382533746 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1417e+04 | 1536 |      1 | 4.889e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2921.1636604212235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.44192066383041, dt = 0.039671975382533746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 295.31 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0497070315427485e-19,1.1233891718567915e-20,-1.6844602407730806e-20)
    sum a = (1.0584427393725023e-19,-2.326357860551367e-20,-1.1846926458051205e-20)
    sum e = 2.3985430853902634e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.03967190893120818 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1471e+04 | 1536 |      1 | 4.881e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2926.21230454158 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 12.481592639212945, dt = 0.03967190893120818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 280.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.939745699622258e-20,1.2396801080279517e-20,-1.9188978989684022e-20)
    sum a = (2.9119026099179527e-21,-7.690943731729363e-20,2.9141938292761664e-20)
    sum e = 2.3985411894954597e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.039671823638542936 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1906e+04 | 1536 |      1 | 4.814e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2966.6961147616826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.521264548144153, dt = 0.039671823638542936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.7%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 290.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0143578882316515e-19,8.280379163106714e-21,-1.7219811898453526e-20)
    sum a = (-3.8315220853292503e-20,6.768848292616318e-20,1.0545760792631182e-20)
    sum e = 2.3985392737786996e-10
    sum de = 0
Info: cfl dt = 0.03967171636912653 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1279e+04 | 1536 |      1 | 4.911e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2908.312187148991 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.560936371782695, dt = 0.03967171636912653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 286.30 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0382625770991175e-19,1.383627241316383e-20,-1.717031560447014e-20)
    sum a = (-4.355664555114482e-20,-1.9834768974224163e-20,-7.478381053520741e-20)
    sum e = 2.3985373401817605e-10
    sum de = 0
Info: cfl dt = 0.039671608478880786 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1161e+04 | 1536 |      1 | 4.929e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2897.3327913939133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.600608088151821, dt = 0.039671608478880786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 277.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0547859314437681e-19,1.1313090813899442e-20,-2.182969493239078e-20)
    sum a = (1.6050678060529143e-19,-7.188240766545838e-20,7.120038143930884e-20)
    sum e = 2.3985353907554435e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.03967146930072756 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1681e+04 | 1536 |      1 | 4.848e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2945.7113727456476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.640279696630701, dt = 0.03967146930072756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 285.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.502283121481096e-20,7.431435754130543e-21,-1.6109357331855553e-20)
    sum a = (1.590034262345896e-20,-2.84548012214993e-20,6.312932708339015e-20)
    sum e = 2.3985334273542036e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03967127009538498 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1863e+04 | 1536 |      1 | 4.821e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2962.6506115964817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.67995116593143, dt = 0.03967127009538498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 275.80 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.736589703581471e-20,7.163365068729848e-21,-1.3765032038740294e-20)
    sum a = (4.063119920815748e-22,8.292486189140297e-20,3.4130336954959614e-20)
    sum e = 2.3985314518441067e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03967107140713258 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1646e+04 | 1536 |      1 | 4.854e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2942.3913324281502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.719622436026814, dt = 0.029284634784289665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 284.69 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (59.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.771803409561874e-20,1.1800109699720657e-20,-1.3340750970906482e-20)
    sum a = (-2.803552745362866e-21,-7.466877117831119e-20,1.5127721565934214e-20)
    sum e = 2.3984994441786944e-10
    sum de = 1.5509636485369269e-24
Info: cfl dt = 0.039670925582781826 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1563e+04 | 1536 |      1 | 4.867e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2166.325363118061 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 334                                                     [SPH][rank=0]
Info: time since start : 184.157557271 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001101605 s
sph::RenderFieldGetter compute custom field took :  0.0009991140000000002 s
rho_t_ampl=1.11241e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000231069, eps_t_phi=6.28319 rad
vx_t_ampl=1.03904e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.14s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 12.748907070811104, dt = 0.039670925582781826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.89 us    (2.2%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 388.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.773157782868813e-20,6.52974585347399e-21,-1.3018862580221108e-20)
    sum a = (-1.817568977911578e-20,-1.2222004424626803e-19,-7.353363856130497e-20)
    sum e = 2.39852836831301e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.0396707274154141 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0673e+04 | 1536 |      1 | 5.008e-02 | 0.1% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2851.933658005126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.788577996393885, dt = 0.0396707274154141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 292.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.897760127107162e-20,7.38027641866923e-22,-1.769463462129248e-20)
    sum a = (1.2196131628981937e-19,6.176034863752716e-20,-2.5710409790036454e-20)
    sum e = 2.3985261725693797e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03967052351276869 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1624e+04 | 1536 |      1 | 4.857e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2940.3428384356357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.828248723809299, dt = 0.03967052351276869 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 293.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.123058595538293e-20,6.837759970387914e-21,-1.7765988901028457e-20)
    sum a = (4.683422895393619e-20,-1.9172855723445498e-19,2.4564889286556133e-20)
    sum e = 2.3985241724419467e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039670247607132454 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1824e+04 | 1536 |      1 | 4.827e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2958.9247452214076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.867919247322067, dt = 0.039670247607132454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 308.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.098679876013399e-20,-5.795315765703623e-21,-1.579426994352931e-20)
    sum a = (-3.884342644299855e-20,5.452460263205687e-21,1.750282491210022e-20)
    sum e = 2.3985221665329256e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.039669973437366904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1679e+04 | 1536 |      1 | 4.849e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2945.4295285175954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.9075894949292, dt = 0.039669973437366904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 315.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.404768243381517e-20,-1.6682334492594085e-21,-1.524001026536831e-20)
    sum a = (-1.1146492316104535e-20,-1.662298146315183e-21,-2.3076664908053604e-20)
    sum e = 2.3985201597374423e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03966970106773954 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1370e+04 | 1536 |      1 | 4.896e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916.644597074646 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.947259468366566, dt = 0.03966970106773954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 276.24 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.39393325692601e-20,-1.874405042116426e-21,-1.6960348305540526e-20)
    sum a = (1.1107215490203315e-19,2.79753940723787e-20,2.8957411240533606e-20)
    sum e = 2.398518153878964e-10
    sum de = -1.137373342260413e-24
Info: cfl dt = 0.039669430561695994 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1492e+04 | 1536 |      1 | 4.877e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2927.9991370005914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.986929169434305, dt = 0.039669430561695994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.8%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 273.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.738416576367735e-20,-1.7813183298680499e-22,-1.477953616801618e-20)
    sum a = (5.58001802458696e-20,-7.21952295430859e-20,-7.445591834919553e-20)
    sum e = 2.398516150779336e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.0396691619818633 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1327e+04 | 1536 |      1 | 4.903e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2912.627844534219 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.026598599996001, dt = 0.0396691619818633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.7%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 283.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.615168605436325e-20,-5.028269617631395e-21,-1.9784314002174363e-20)
    sum a = (8.898232626586488e-20,-3.8363731621813245e-21,4.760321441628119e-20)
    sum e = 2.398514152242838e-10
    sum de = 5.583469134732937e-24
Info: cfl dt = 0.03966889538965857 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1518e+04 | 1536 |      1 | 4.873e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2930.375540625057 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.066267761977864, dt = 0.03966889538965857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 281.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.16009917430496e-20,-3.8249142249371945e-21,-1.5474955314759712e-20)
    sum a = (4.594034257135672e-20,1.7624925078358492e-20,5.2020356995206244e-20)
    sum e = 2.3985121600433275e-10
    sum de = -3.1019272970738538e-24
Info: cfl dt = 0.03966863084582681 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1080e+04 | 1536 |      1 | 4.942e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2889.670123083943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.105936657367522, dt = 0.02930093074088802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 287.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.128948588245374e-20,-2.880080127725626e-21,-1.3863098853885774e-20)
    sum a = (-1.0885098267865388e-19,-7.569454528283207e-20,3.371215025521317e-20)
    sum e = 2.398487295597563e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.0396684375796199 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0993e+04 | 1536 |      1 | 4.956e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2128.4139987079975 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 344                                                     [SPH][rank=0]
Info: time since start : 184.967483369 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009506740000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008473010000000001 s
rho_t_ampl=3.98785e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000217049, eps_t_phi=6.28319 rad
vx_t_ampl=1.51509e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.52s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 13.13523758810841, dt = 0.0396684375796199 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.29 us    (2.2%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 355.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.784465268803647e-20,-7.250711565985925e-21,-1.2794014274640547e-20)
    sum a = (1.009075832334591e-19,-2.1982632766447477e-20,6.78054128191052e-21)
    sum e = 2.39850908416795e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03966817592634759 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0194e+04 | 1536 |      1 | 5.087e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807.1974920074445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.17490602568803, dt = 0.03966817592634759 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 334.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.989448137630699e-20,-7.057951443180038e-21,-1.3059209994949302e-20)
    sum a = (3.6595166753480506e-20,-4.659344578248938e-20,-6.351966034709571e-20)
    sum e = 2.3985069251689014e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.039667917304729586 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0468e+04 | 1536 |      1 | 5.041e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832.633668391618 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.214574201614377, dt = 0.039667917304729586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 307.96 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.942045071887849e-20,-9.393795703387024e-21,-1.6973243011756863e-20)
    sum a = (-5.728999088350205e-21,-4.003058953568279e-20,-4.041793641326608e-20)
    sum e = 2.398504974128336e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.039667660939777534 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0504e+04 | 1536 |      1 | 5.035e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.0243793696636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.254242118919107, dt = 0.039667660939777534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 306.24 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.068001789433137e-20,-1.0851439974979673e-20,-1.8118329371987342e-20)
    sum a = (2.066096479734808e-20,-7.169149922490807e-20,8.074506502956709e-20)
    sum e = 2.3985030351700575e-10
    sum de = 2.68833699079734e-24
Info: cfl dt = 0.03966740689745053 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0600e+04 | 1536 |      1 | 5.020e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2844.942060525524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.293909779858884, dt = 0.03966740689745053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.7%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 274.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.942045071887849e-20,-1.4322762246912024e-20,-1.2512255592651914e-20)
    sum a = (-1.6719738474156804e-20,1.1183033116144362e-19,-9.070646583845517e-21)
    sum e = 2.398501112168629e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966715523266681 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9822e+04 | 1536 |      1 | 5.151e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2772.560789169887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.333577186756335, dt = 0.03966715523266681 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.6%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 287.37 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.059875549591506e-20,-6.247205593876119e-21,-1.4653440527931982e-20)
    sum a = (2.8790590572246923e-19,-8.457214818514612e-20,2.9789467120188613e-20)
    sum e = 2.398499206661581e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03966690599942743 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0071e+04 | 1536 |      1 | 5.108e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2795.7106190412233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.373244341989002, dt = 0.03966690599942743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 273.61 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.327632090017058e-20,-1.3497361655185371e-20,-1.2701049454569067e-20)
    sum a = (8.62938952515918e-20,5.470711898409885e-20,7.997615154855096e-20)
    sum e = 2.398497320170396e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.03966665925071434 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8800e+04 | 1536 |      1 | 5.333e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2677.5287728156936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.41291124798843, dt = 0.03966665925071434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 281.25 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (60.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.388578888829294e-20,-8.564242052887141e-21,-8.53328745609001e-21)
    sum a = (-1.2377617652111708e-19,7.858175769381714e-22,-1.9791862622285674e-20)
    sum e = 2.3984954541779264e-10
    sum de = -6.4106497472859645e-24
Info: cfl dt = 0.0396664150384806 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8472e+04 | 1536 |      1 | 5.395e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2646.961013900656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.452577907239144, dt = 0.0396664150384806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 302.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.287882764636513e-20,-9.602374483176295e-21,-1.1297091604360895e-20)
    sum a = (1.812828671337293e-20,1.6652966812020585e-19,4.3824773983783835e-21)
    sum e = 2.398493610127459e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.039666173413642654 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0213e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808.8450252714088 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.492244322277624, dt = 0.029323783128091918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 291.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.947935064594929e-20,-1.4326465611423183e-21,-1.0689126085303985e-20)
    sum a = (-2.0241109072197117e-20,-1.60518036188145e-20,5.290314817286601e-21)
    sum e = 2.398475709416352e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.03966599733834485 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0826e+04 | 1536 |      1 | 4.983e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2118.628815601841 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 354                                                     [SPH][rank=0]
Info: time since start : 185.79863853700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008947390000000001 s
sph::RenderFieldGetter compute custom field took :  0.000800584 s
rho_t_ampl=7.85496e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000205014, eps_t_phi=6.28319 rad
vx_t_ampl=1.92248e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.91s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 13.521568105405716, dt = 0.03966599733834485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.94 us    (2.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 366.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.098270501665112e-20,-4.744882874716687e-21,-1.0465969858048968e-20)
    sum a = (8.401854809593498e-20,-2.591446676205487e-20,9.211244720208001e-21)
    sum e = 2.398490792263084e-10
    sum de = -5.169878828456423e-24
Info: cfl dt = 0.03966575945241684 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9752e+04 | 1536 |      1 | 5.163e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2765.95745490588 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13.561234102744061, dt = 0.03966575945241684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.3%)
   LB compute        : 311.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.538914325899478e-20,-5.9693474451245006e-21,-1.0022835043171005e-20)
    sum a = (7.842498633827862e-20,7.219880560444198e-20,-9.890668326180933e-20)
    sum e = 2.398488841742199e-10
    sum de = -3.1019272970738538e-24
Info: cfl dt = 0.03966552517645174 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0503e+04 | 1536 |      1 | 5.036e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835.72965307908 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13.600899862196478, dt = 0.03966552517645174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 282.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.266685291204822e-20,-1.1608196060231607e-21,-1.6090310440124833e-20)
    sum a = (-1.382815146384293e-20,-1.1525539940260422e-20,5.326697402752828e-20)
    sum e = 2.398487093534996e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.039665293659947545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0386e+04 | 1536 |      1 | 5.055e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824.91342736859 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13.640565387372929, dt = 0.039665293659947545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 288.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.490156886849688e-20,-3.2771337085293007e-21,-1.0959436255744947e-20)
    sum a = (-2.410784486350677e-21,-5.723508023818545e-20,-1.5258392352376862e-20)
    sum e = 2.3984853718161627e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03966506495794601 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0336e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820.1781722229293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.680230681032876, dt = 0.03966506495794601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 279.31 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.476613153780302e-20,-6.453985596617113e-21,-1.2923700769861357e-20)
    sum a = (-1.157176553448325e-19,1.3127606004048268e-19,8.205962796542889e-21)
    sum e = 2.3984836795254283e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.03966483911518559 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0823e+04 | 1536 |      1 | 4.983e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2865.4799083740972 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.719895745990822, dt = 0.03966483911518559 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.4%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 308.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.165989167012041e-20,2.492602389443666e-21,-1.2132854990163584e-20)
    sum a = (-4.302166809490408e-20,1.554458139162595e-19,-3.3065888108743695e-20)
    sum e = 2.3984820177969615e-10
    sum de = 5.790264287871194e-24
Info: cfl dt = 0.03966461617542944 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0393e+04 | 1536 |      1 | 5.054e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825.5001665433674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.759560585106009, dt = 0.03966461617542944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 315.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.180887273388365e-20,9.13805193128776e-21,-1.4262921413570865e-20)
    sum a = (-2.921383223066523e-20,-2.199794882396149e-20,1.456132026865344e-20)
    sum e = 2.398480387736472e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03966439618135451 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0762e+04 | 1536 |      1 | 4.993e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859.7354850566585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.799225201281438, dt = 0.03966439618135451 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 282.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.29194588455733e-20,4.746840367386872e-21,-1.27407979676124e-20)
    sum a = (-8.749928749476714e-20,-1.5068751461162848e-19,-7.237261525355412e-20)
    sum e = 2.398478790402414e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966417917454901 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0245e+04 | 1536 |      1 | 5.079e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811.6503156863873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.838889597462792, dt = 0.03966417917454901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 299.94 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.747015315688692e-20,-3.783304279393945e-21,-1.733548937643982e-20)
    sum a = (-3.998110002082696e-20,9.160687424232045e-20,5.780286775494359e-20)
    sum e = 2.3984772268060547e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.03966396519551243 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0124e+04 | 1536 |      1 | 5.099e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2800.3696607668203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.878553776637341, dt = 0.029344846065679775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 337.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.736180329233185e-20,3.709607325621857e-21,-1.3057621278924341e-20)
    sum a = (-4.585908017294041e-20,-5.3619953346366846e-20,2.0906165564040007e-20)
    sum e = 2.3984655518643804e-10
    sum de = 5.583469134732937e-24
Info: cfl dt = 0.03966380975810865 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0112e+04 | 1536 |      1 | 5.101e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2071.0331482403276 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 364                                                     [SPH][rank=0]
Info: time since start : 186.61768728500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001088771 s
sph::RenderFieldGetter compute custom field took :  0.0009081040000000001 s
rho_t_ampl=0.000125526, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00019513, eps_t_phi=6.28319 rad
vx_t_ampl=2.25521e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.29s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 13.907898622703021, dt = 0.03966380975810865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.07 us    (2.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 333.06 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.974550031254374e-20,-5.471192013166153e-22,-1.2769767128281764e-20)
    sum a = (-7.44431288158792e-20,1.0545512803165053e-19,2.5278131867448014e-20)
    sum e = 2.3984748655545914e-10
    sum de = -5.37667398159468e-24
Info: cfl dt = 0.03966360022020707 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0531e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2838.2584068429837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.94756243246113, dt = 0.03966360022020707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 316.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.315852104602898e-20,6.791044672339993e-21,-1.1680440991712524e-20)
    sum a = (-1.8859648299119763e-20,-2.9227045306188975e-20,-1.337840118902086e-20)
    sum e = 2.398473256110421e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.03966339474331077 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0517e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.886403473695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.987226032681336, dt = 0.03966339474331077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 290.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.258968425711477e-20,2.959887632941128e-21,-1.2977702435636956e-20)
    sum a = (5.0788999010196854e-21,-1.0980763447654661e-20,1.8412829484774646e-20)
    sum e = 2.3984718280260605e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.03966319242789619 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0878e+04 | 1536 |      1 | 4.974e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870.4463527502035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.026889427424647, dt = 0.03966319242789619 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 325.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.226463466344951e-20,2.886084868754436e-21,-1.1616916770844078e-20)
    sum a = (2.3627042339543575e-20,3.7220522836670834e-20,9.211706169720308e-20)
    sum e = 2.398470436605429e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.0396629933173112 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0633e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2847.6728295018393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.066552619852544, dt = 0.0396629933173112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.8%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 279.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.085608642423338e-20,5.317793364593168e-21,-6.5016057958416076e-21)
    sum a = (-1.1249424687431868e-19,8.252757189045415e-20,1.1571268034157207e-19)
    sum e = 2.3984690838004493e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.039662797445621754 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1138e+04 | 1536 |      1 | 4.933e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2894.632372928219 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.106215613169855, dt = 0.039662797445621754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 351.29 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.787174015417525e-20,9.48942186558591e-21,-1.4441807612596693e-21)
    sum a = (3.227471590434642e-20,-9.912906391971489e-20,-5.515838480594377e-20)
    sum e = 2.398467770279069e-10
    sum de = 4.756288522179909e-24
Info: cfl dt = 0.03966260484587197 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0580e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2842.701219106988 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.145878410615477, dt = 0.03966260484587197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 318.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.413366982702476e-20,1.9565932816605314e-21,-7.020518204882311e-21)
    sum a = (1.3094758318135686e-19,-6.236704902199252e-20,-3.511354479849136e-21)
    sum e = 2.398466496672845e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.039662415549991045 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0552e+04 | 1536 |      1 | 5.028e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.05950265742 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 14.18554101546135, dt = 0.039662415549991045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.8%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 272.15 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.635956704519729e-20,2.122292390931299e-22,-6.135559127764346e-21)
    sum a = (7.784937768282973e-20,-5.5342401406809274e-21,4.737648202529863e-20)
    sum e = 2.3984652635636624e-10
    sum de = -6.4106497472859645e-24
Info: cfl dt = 0.03966222958879176 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0820e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2864.950459937394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.22520343101134, dt = 0.03966222958879176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 326.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.435509455092819e-20,1.1220929942778854e-21,-3.247334961613486e-21)
    sum a = (-9.849002688057373e-20,-1.6688740982540846e-20,2.3172462738963227e-20)
    sum e = 2.3984640714833805e-10
    sum de = -5.37667398159468e-24
Info: cfl dt = 0.03966204699196944 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9908e+04 | 1536 |      1 | 5.136e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2780.163667534325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.264865660600133, dt = 0.029363479400196013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 323.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.091026135651093e-20,4.083488425627129e-22,-3.0469035142794996e-21)
    sum a = (6.767803414772098e-20,7.426049838698397e-20,8.725830076090731e-20)
    sum e = 2.398457476988861e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.03966191491052165 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0667e+04 | 1536 |      1 | 5.009e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2110.5199504558095 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 374                                                     [SPH][rank=0]
Info: time since start : 187.433526306 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00106093 s
sph::RenderFieldGetter compute custom field took :  0.0009561340000000001 s
rho_t_ampl=0.000179089, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000187498, eps_t_phi=6.28319 rad
vx_t_ampl=2.50952e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.68s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 14.29422914000033, dt = 0.03966191491052165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.15 us    (2.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 372.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.595325505311572e-20,4.689014975805471e-21,1.3548193780366943e-21)
    sum a = (7.009559050060635e-20,-1.151539668939039e-19,6.515175491365795e-20)
    sum e = 2.3984623003119444e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.039661737301676804 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9177e+04 | 1536 |      1 | 5.264e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2712.200322761594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.33389105491085, dt = 0.039661737301676804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 320.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.275693404874066e-20,-3.634323215630701e-21,3.500457195985143e-21)
    sum a = (2.659311988173907e-20,-6.556597560782721e-20,-7.188746199665015e-20)
    sum e = 2.398461117534736e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.039661564074353846 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1922e+04 | 1536 |      1 | 7.007e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2037.8263624663903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.373552792212527, dt = 0.039661564074353846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 288.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.289237137943452e-20,-5.252032191916424e-21,-2.068318694700047e-21)
    sum a = (-5.904051838272016e-20,-5.637859949045644e-22,-4.775916463058605e-21)
    sum e = 2.398460083529775e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.03966139430572395 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2271e+04 | 1536 |      1 | 6.897e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2070.2816288553454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.41321435628688, dt = 0.03966139430572395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 348.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.700966623252781e-20,-3.9859312233617095e-21,-9.268637690577234e-22)
    sum a = (-1.3809528830872524e-19,8.975386604998235e-21,5.388121120981963e-20)
    sum e = 2.3984590916534155e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.03966122802711109 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2791e+04 | 1536 |      1 | 6.739e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2118.614743604579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.452875750592606, dt = 0.03966122802711109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 307.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.394405756405335e-20,-3.442250860519743e-21,2.3733429698515513e-21)
    sum a = (4.6675090090370904e-20,1.5447855958416585e-20,2.712143771013806e-21)
    sum e = 2.3984581429112966e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03966106526170064 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9851e+04 | 1536 |      1 | 5.146e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2774.7855197511835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.492536978619716, dt = 0.03966106526170064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.4%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 319.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.830986460718885e-20,-2.6985623614714747e-21,1.466195455138908e-21)
    sum a = (-1.0641988259269913e-20,-2.6018118644201514e-19,2.879598408435814e-20)
    sum e = 2.398457237494511e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966090603165222 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9715e+04 | 1536 |      1 | 5.169e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2762.192176021109 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.532198043881417, dt = 0.03966090603165222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 312.82 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.998928750779269e-20,-1.848568784130354e-20,3.125526720465829e-21)
    sum a = (-1.7149751999109802e-20,9.318253515181495e-20,-1.083138140726303e-20)
    sum e = 2.398456375555857e-10
    sum de = 2.68833699079734e-24
Info: cfl dt = 0.03966075035800927 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2670e+04 | 1536 |      1 | 6.776e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2107.2709742503375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.57185894991307, dt = 0.03966075035800927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 338.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.066647416126198e-20,-7.782779235825039e-21,1.910117396921498e-21)
    sum a = (-7.749046875649101e-20,5.778391885873939e-20,-3.221117801153378e-20)
    sum e = 2.3984555571998333e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.039660598260702014 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9172e+04 | 1536 |      1 | 5.265e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2711.655358133551 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.61151970027108, dt = 0.039660598260702014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 316.74 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.5054643675743e-20,-6.194062313140971e-21,2.086334183878553e-22)
    sum a = (-3.226117217127704e-20,-2.5288525415008756e-20,-3.873317767969215e-20)
    sum e = 2.398454782484444e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.03966044975854821 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2811e+04 | 1536 |      1 | 6.733e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.4197103940783 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.651180298531782, dt = 0.02937935876585307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 350.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.521716847257562e-20,-8.58267951763199e-21,-1.058655709151951e-21)
    sum a = (4.5090473321252765e-20,5.264812436712928e-20,7.097022663659507e-20)
    sum e = 2.398451869918812e-10
    sum de = 3.5155176033503676e-24
Info: cfl dt = 0.03966034299305588 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9204e+04 | 1536 |      1 | 5.260e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2010.891531759274 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 384                                                     [SPH][rank=0]
Info: time since start : 188.35012772500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0011032980000000002 s
sph::RenderFieldGetter compute custom field took :  0.001017789 s
rho_t_ampl=0.000237456, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000182155, eps_t_phi=6.28319 rad
vx_t_ampl=2.68384e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.07s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 14.680559657297636, dt = 0.03966034299305588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.94 us    (2.1%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 412.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.231880959572705e-20,-5.348028690566426e-21,3.3675556581709943e-21)
    sum a = (-9.079380056389523e-20,2.4506159902847058e-20,1.584202713970023e-20)
    sum e = 2.398453664318811e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.039660199865866295 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9613e+04 | 1536 |      1 | 5.187e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2752.634057976346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.720220000290691, dt = 0.039660199865866295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 356.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.857601427378331e-20,-4.935553241834135e-21,2.9026519704943352e-21)
    sum a = (2.9931650083342676e-21,1.6502212927826395e-19,1.5948718580402494e-20)
    sum e = 2.3984529440576713e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.03966006131027052 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2027e+04 | 1536 |      1 | 6.973e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2047.5000453465952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.759880200156557, dt = 0.03966006131027052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 297.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.659862924565297e-20,4.3963433690092115e-21,3.5372948291464514e-21)
    sum a = (-3.81256085903211e-21,8.611547574654029e-21,-5.935519399548698e-21)
    sum e = 2.3984523326934085e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.039659926404815 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2195e+04 | 1536 |      1 | 6.921e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2063.078446768788 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.799540261466827, dt = 0.039659926404815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 301.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.681532897476315e-20,1.6367283983108958e-21,2.8679274565761465e-21)
    sum a = (3.1133656393250666e-20,5.928257623900542e-20,-3.620010344244798e-20)
    sum e = 2.398451764245766e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.03965979516875568 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2032e+04 | 1536 |      1 | 6.972e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2047.985557947487 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.839200187871642, dt = 0.03965979516875568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 341.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.497338127732668e-20,4.993643159452047e-21,8.320931810555317e-22)
    sum a = (4.9245013440286863e-20,2.1028123629450504e-20,3.605696160568028e-20)
    sum e = 2.3984512388949374e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03965966761449423 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1710e+04 | 1536 |      1 | 7.075e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2018.0441666054119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.878859983040398, dt = 0.03965966761449423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 305.29 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.2562596790976e-20,5.068345312162879e-21,3.694950493178256e-21)
    sum a = (-7.122310627863271e-21,1.1867982120826309e-20,1.5742258010473028e-20)
    sum e = 2.3984507563921326e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03965954375342665 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2703e+04 | 1536 |      1 | 6.765e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2110.339996043142 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.918519650654892, dt = 0.03965954375342665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 294.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.3510658105833e-20,5.356519976338443e-21,3.916444067385158e-21)
    sum a = (-1.134287644561063e-20,-9.396066163424155e-20,-4.328953099344075e-20)
    sum e = 2.3984503164526125e-10
    sum de = 0
Info: cfl dt = 0.03965942359586045 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2222e+04 | 1536 |      1 | 6.912e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2065.5683350925783 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.958179194408318, dt = 0.03965942359586045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.4%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 318.39 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.426910715771862e-20,-4.683962528508102e-22,1.0290193110280715e-21)
    sum a = (2.905469336709995e-20,-2.775593831262562e-20,-7.141168508819701e-20)
    sum e = 2.3984499187506177e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.03965930715102045 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2837e+04 | 1536 |      1 | 6.726e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2122.698517257682 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.99783861800418, dt = 0.03965930715102045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 292.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.226463466344951e-20,-2.574896439402376e-22,-2.360772852889583e-21)
    sum a = (-6.60764877122661e-21,2.5323424665663258e-20,6.08916467779667e-20)
    sum e = 2.3984495629196665e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.0396591944270533 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2179e+04 | 1536 |      1 | 6.926e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2061.559239864774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.037497925155199, dt = 0.02939224943974139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.5%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 300.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.326687091058406e-20,1.5405467314353355e-21,2.0524988557938517e-21)
    sum a = (-2.6940178041642082e-20,-1.1071254994156088e-19,-1.9978448112606842e-20)
    sum e = 2.3984488395226736e-10
    sum de = -4.549493369041652e-24
Info: cfl dt = 0.03965911417360668 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2905e+04 | 1536 |      1 | 6.706e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1577.864189595793 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 394                                                     [SPH][rank=0]
Info: time since start : 189.337879904 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000897815 s
sph::RenderFieldGetter compute custom field took :  0.00095914 s
rho_t_ampl=0.000298839, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00017908, eps_t_phi=6.28319 rad
vx_t_ampl=2.77873e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.45s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 15.06689017459494, dt = 0.03965911417360668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (2.2%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 381.09 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.467541914980019e-20,-4.8502171424555436e-21,7.169430046826295e-23)
    sum a = (-9.185867657647569e-20,1.5289352122667703e-19,8.427030560678245e-21)
    sum e = 2.398449092253047e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03965900705169392 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0145e+04 | 1536 |      1 | 5.095e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2802.037450022711 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.106549288768546, dt = 0.03965900705169392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.5%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 285.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.965951291933417e-20,6.441261894260913e-21,9.691700258242466e-22)
    sum a = (-6.395858645354089e-20,-4.119037749016356e-20,3.06213195116375e-20)
    sum e = 2.398448823019839e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03965890456444582 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0544e+04 | 1536 |      1 | 5.029e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839.0567592732173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.14620829582024, dt = 0.03965890456444582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.4%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 279.09 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.160981048132573e-20,9.585894511101633e-22,2.6236797449806763e-21)
    sum a = (1.1564231832963405e-19,-7.340944538286662e-20,1.574003225040756e-19)
    sum e = 2.398448620042951e-10
    sum de = 5.37667398159468e-24
Info: cfl dt = 0.039658805814797145 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0272e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813.802202270677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.185867200384687, dt = 0.039658805814797145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 289.01 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.353774557197177e-20,-2.5921435369829217e-21,1.1379946760584633e-20)
    sum a = (-1.6104345102816584e-21,-8.21137093333179e-21,2.1927324493560507e-20)
    sum e = 2.39844845657571e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03965871081020752 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0486e+04 | 1536 |      1 | 5.038e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2833.702973972652 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.225526006199484, dt = 0.03965871081020752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.5%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 280.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.61923172535714e-20,-1.625221515722648e-21,9.563207520886136e-21)
    sum a = (3.6642146577564934e-20,-3.635879620698025e-20,-8.902991870224759e-21)
    sum e = 2.39844833215136e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039658619552658834 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0459e+04 | 1536 |      1 | 5.043e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2831.142543561881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.265184717009692, dt = 0.039658619552658834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 308.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.370027036880441e-20,-3.6255144986148694e-21,8.5987818530009e-21)
    sum a = (2.8706788723880094e-20,4.1701810475867056e-20,1.0486934535373509e-19)
    sum e = 2.3984482461572943e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03965853204317159 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0560e+04 | 1536 |      1 | 5.026e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.537724008005 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.304843336562351, dt = 0.03965853204317159 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 278.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.242715946028214e-20,-4.245642886008643e-22,1.5013773064846555e-20)
    sum a = (-4.9643072220029284e-20,-1.1715758463841753e-19,-3.653889928309952e-20)
    sum e = 2.3984481979498953e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03965844828173183 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0062e+04 | 1536 |      1 | 5.109e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2794.290652124275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.344501868605523, dt = 0.03965844828173183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 286.47 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.61923172535714e-20,-8.21974979553829e-21,1.0760675316808932e-20)
    sum a = (9.671071894858317e-20,6.251888696695009e-20,9.479790258844047e-20)
    sum e = 2.3984481868547914e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.039658368267299376 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0144e+04 | 1536 |      1 | 5.096e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2801.868711964739 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.384160316887254, dt = 0.039658368267299376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 732.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 269.18 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.966423791412744e-20,-2.1789274153483984e-21,1.7124512330886713e-20)
    sum a = (3.913377022067351e-20,1.5687585985580537e-20,-1.7447229273530142e-21)
    sum e = 2.398448212167308e-10
    sum de = 5.790264287871194e-24
Info: cfl dt = 0.039658291997814635 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0201e+04 | 1536 |      1 | 5.086e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807.1903681243953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.423818685154552, dt = 0.02940200673769411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 303.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.923083845590708e-20,-2.646847521333488e-21,1.5158852477515552e-20)
    sum a = (-1.5101262372365198e-20,-5.469221955509235e-20,1.8434245447429545e-20)
    sum e = 2.3984482394311837e-10
    sum de = -4.549493369041652e-24
Info: cfl dt = 0.039658238703391704 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0723e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2117.172546940732 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 190.329653153 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00092181 s
sph::RenderFieldGetter compute custom field took :  0.0009571650000000001 s
rho_t_ampl=0.00036148, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000178195, eps_t_phi=6.28319 rad
vx_t_ampl=2.79671e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.84s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 15.453220691892247, dt = 0.039658238703391704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.11 us    (2.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 375.16 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.099152375492725e-20,-5.850707517749119e-21,1.6186573265846326e-20)
    sum a = (-3.738281947979697e-20,1.3513442523602447e-19,4.3765996564358656e-21)
    sum e = 2.398448323578716e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.0396581681072809 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6801e+04 | 1536 |      1 | 5.731e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2491.117346218418 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.492878930595639, dt = 0.0396581681072809 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 283.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.307725864761266e-20,3.2721077138355834e-21,1.6081390454570982e-20)
    sum a = (9.541813892377366e-20,-3.960894825978538e-20,1.9772172415998906e-20)
    sum e = 2.398448453237724e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03965810208833381 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0212e+04 | 1536 |      1 | 5.084e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808.1834939729274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.53253709870292, dt = 0.03965810208833381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 316.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.630539211291975e-20,-1.7643886635313175e-21,1.7170797393048028e-20)
    sum a = (-3.5412629559859754e-20,-4.429857329876256e-20,5.686078682878786e-20)
    sum e = 2.398448607995044e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.0396580397947831 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0339e+04 | 1536 |      1 | 5.063e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2819.9481080303735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.572195200791253, dt = 0.0396580397947831 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 313.16 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.063938669512321e-20,-3.6132669431243896e-21,2.0161216768223794e-20)
    sum a = (-8.940895385755053e-20,7.480902122958182e-21,5.794938281488164e-20)
    sum e = 2.398448795489504e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.039657981222847534 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0156e+04 | 1536 |      1 | 5.094e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2802.941161677602 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.611853240586036, dt = 0.039657981222847534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 286.56 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.508173114188176e-20,-2.290054803286855e-21,2.2480958095238278e-20)
    sum a = (1.9452017324242025e-19,-1.2367923103531109e-20,6.480903514208482e-20)
    sum e = 2.398449014820859e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039657926364696984 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0821e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2864.756841290523 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.651511221808883, dt = 0.039657926364696984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.37 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        : 273.47 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.142964820794084e-20,-3.1742066277226984e-21,2.5187170020258132e-20)
    sum a = (6.34016004310624e-20,1.0510626448154832e-19,3.901842962841697e-20)
    sum e = 2.398449265113721e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03965787521160541 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0687e+04 | 1536 |      1 | 5.005e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2852.325327552461 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.69116914817358, dt = 0.03965787521160541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.7%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 293.32 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.142964820794084e-20,3.323981269595477e-21,2.6223157066234808e-20)
    sum a = (3.1196296158696576e-20,-5.514547995879152e-20,3.7389976175776375e-20)
    sum e = 2.39844954547029e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.039657827753889194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0807e+04 | 1536 |      1 | 4.986e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863.4435869480635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.730827023385185, dt = 0.039657827753889194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.6%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 286.50 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.094207381744296e-20,-2.041294518551495e-21,2.767367179923431e-20)
    sum a = (1.6142436852074234e-20,2.7182149926965467e-21,2.464105806683302e-20)
    sum e = 2.398449854973579e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.03965778398091749 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0671e+04 | 1536 |      1 | 5.008e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.8443827476026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.770484851139074, dt = 0.03965778398091749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 288.44 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.058993675763893e-20,-7.86462359152168e-22,2.8398084357909194e-20)
    sum a = (-9.453864275758042e-20,-9.088118343348134e-20,1.8092102910318798e-20)
    sum e = 2.398450192688198e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.039657743881121046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0569e+04 | 1536 |      1 | 5.025e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841.3473194352287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.810142635119991, dt = 0.029408574069563542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 317.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.573655532400554e-20,-5.3140635474783565e-21,2.880028878196997e-20)
    sum a = (5.173028845851916e-20,8.035337122472066e-21,1.31751570371895e-21)
    sum e = 2.398449711738405e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.039657717277519114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0900e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2129.836409110096 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 414                                                     [SPH][rank=0]
Info: time since start : 191.153207366 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001075707 s
sph::RenderFieldGetter compute custom field took :  0.0009414460000000001 s
rho_t_ampl=0.000423701, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000179372, eps_t_phi=6.28319 rad
vx_t_ampl=2.74206e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16.23s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 15.839551209189555, dt = 0.039657717277519114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.11 us    (2.4%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 359.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.124003594496945e-20,-3.540548735687394e-21,2.860588010208067e-20)
    sum a = (6.039319872302508e-20,2.272731819799585e-20,8.551158000446135e-20)
    sum e = 2.3984507741837076e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039657682774568034 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0163e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2803.5616920710795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.879208926467074, dt = 0.039657682774568034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 280.34 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.950643811208806e-20,-2.3472188797769777e-21,3.366654341469273e-20)
    sum a = (-4.254425150420823e-20,-5.0111880141524415e-20,2.518892198232609e-20)
    sum e = 2.3984512197660265e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03965765267977227 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0571e+04 | 1536 |      1 | 5.024e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841.5020307996033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.918866609241642, dt = 0.03965765267977227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.7%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 289.93 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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: 3.320963541666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.256732178576926e-20,-5.778677078007054e-21,3.346934851606043e-20)
    sum a = (5.3860040483680086e-20,9.1643798770442e-20,-5.3513782900155086e-20)
    sum e = 2.3984516543745863e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03965762620509484 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0740e+04 | 1536 |      1 | 4.997e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2857.181646368064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.958524261921413, dt = 0.03965762620509484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 303.25 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.877507652634123e-20,6.665262541978803e-22,2.97865366493932e-20)
    sum a = (-9.31300945183643e-20,-5.750153070161252e-20,3.086317902176058e-20)
    sum e = 2.3984521126369154e-10
    sum de = 7.858215819253763e-24
Info: cfl dt = 0.03965760333631776 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9617e+04 | 1536 |      1 | 5.186e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2752.870402807469 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.998181888126508, dt = 0.03965760333631776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 283.02 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.527606839964642e-20,-4.571406699972484e-21,3.268359136883954e-20)
    sum a = (1.5636239828605938e-20,-1.5303309838984228e-19,5.3656996934960335e-21)
    sum e = 2.398452593443122e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.03965758405661469 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9144e+04 | 1536 |      1 | 5.270e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2708.8167091501123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.037839491462826, dt = 0.03965758405661469 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 287.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.240479698893663e-20,-1.253491012394214e-20,3.239079759482994e-20)
    sum a = (7.671847597153602e-20,-3.514113822214942e-20,5.818418759518073e-20)
    sum e = 2.398453095770103e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03965756834834738 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9819e+04 | 1536 |      1 | 5.151e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2771.559911297009 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.077497075519442, dt = 0.03965756834834738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.7%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 304.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.834167706812089e-20,-1.1589718916581282e-20,3.5745567803029806e-20)
    sum a = (2.2022109970821354e-20,5.2476818959172204e-20,-6.879151093309353e-22)
    sum e = 2.398453618582275e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.03965755619301657 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0634e+04 | 1536 |      1 | 5.014e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2847.3372406655976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.11715464386779, dt = 0.03965755619301657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 329.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.84229394665372e-20,-7.771166542822188e-21,3.4550924552509485e-20)
    sum a = (-6.507425146513155e-20,-4.3990957624191127e-20,-7.426804154462915e-20)
    sum e = 2.398454160836613e-10
    sum de = 8.68539643180679e-24
Info: cfl dt = 0.03965754757127341 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0658e+04 | 1536 |      1 | 5.010e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849.6117099891444 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.156812200060806, dt = 0.03965754757127341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.9%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 277.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.270275911646312e-20,-1.1429693890793686e-20,3.0146632162537586e-20)
    sum a = (-3.6581623020411116e-20,-3.1099980575515035e-20,-2.469740550889042e-20)
    sum e = 2.3984547214845144e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.0396575424629306 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0221e+04 | 1536 |      1 | 5.083e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2808.9293506840268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.19646974763208, dt = 0.029411978854778198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 321.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.359664549904259e-20,-1.2088562116234559e-20,3.0403157522301085e-20)
    sum a = (-7.175469780160611e-20,-2.4295081352012756e-20,1.6721443490009165e-20)
    sum e = 2.3984527464516076e-10
    sum de = 0
Info: cfl dt = 0.03965754161766507 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0877e+04 | 1536 |      1 | 4.975e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2128.4712804001583 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 424                                                     [SPH][rank=0]
Info: time since start : 191.98016446300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000837763 s
sph::RenderFieldGetter compute custom field took :  0.000726996 s
rho_t_ampl=0.000483935, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00018244, eps_t_phi=6.28319 rad
vx_t_ampl=2.62064e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16.61s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 16.225881726486858, dt = 0.03965754161766507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.82 us    (2.1%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 387.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.684714143569518e-20,-1.2951948646804254e-20,3.167539401888803e-20)
    sum a = (3.90872136382475e-20,-5.686040060020747e-21,-6.412620997180623e-20)
    sum e = 2.3984556307887173e-10
    sum de = 3.5155176033503676e-24
Info: cfl dt = 0.03965754189302562 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5318e+04 | 1536 |      1 | 6.067e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2353.1982951011482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.265539268104522, dt = 0.03965754189302562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 335.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.30007212439896e-20,-1.2808430045694972e-20,2.7529196569563066e-20)
    sum a = (8.583340832723268e-21,2.532746530087097e-20,-6.658476749600503e-20)
    sum e = 2.398456290107949e-10
    sum de = -4.549493369041652e-24
Info: cfl dt = 0.03965754630730512 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9937e+04 | 1536 |      1 | 5.131e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782.5807556034197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.305196809997547, dt = 0.03965754630730512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 284.81 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.310907110854469e-20,-1.119029782775083e-20,2.483985789522264e-20)
    sum a = (6.09163254128301e-20,-9.359092532657087e-20,5.090684773194168e-20)
    sum e = 2.398456910161793e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.039657554151878036 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9603e+04 | 1536 |      1 | 5.189e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2751.5237215519605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.34485435630485, dt = 0.039657554151878036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.4%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 310.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.958770051050438e-20,-1.7259371588640145e-20,2.9188413551663524e-20)
    sum a = (-7.293300257864267e-21,-3.5287384748010225e-20,4.5972818392658834e-21)
    sum e = 2.398457543626757e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.03965756540310704 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0343e+04 | 1536 |      1 | 5.062e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820.3483955663837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.384511910456727, dt = 0.03965756540310704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 305.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.151091060635716e-20,-1.750294716305988e-20,2.845246849831318e-20)
    sum a = (1.0638602326002567e-20,-2.0766374785664885e-19,-4.466542166163968e-20)
    sum e = 2.398458189396799e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03965758003616274 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0491e+04 | 1536 |      1 | 5.038e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834.0497723959147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.424169475859834, dt = 0.03965758003616274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 333.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.040032449466753e-20,-2.9155292618785246e-20,2.5704326520903684e-20)
    sum a = (-4.1105229865585987e-20,-1.2602847684584283e-19,-1.965362292243413e-20)
    sum e = 2.398458846414593e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.039657598025503116 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0077e+04 | 1536 |      1 | 5.107e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2795.5763951861645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.463827055895997, dt = 0.039657598025503116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 296.18 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.329868337151609e-20,-3.253577664977957e-20,2.5420864748480615e-20)
    sum a = (-1.9289661824072764e-20,-4.9048071326172505e-20,3.140961160297731e-20)
    sum e = 2.398459513623291e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.03965761934483659 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0082e+04 | 1536 |      1 | 5.106e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2796.067573293478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.5034846539215, dt = 0.03965761934483659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 332.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.36779078974589e-20,-3.295626723741816e-20,2.767901778354258e-20)
    sum a = (-5.808229926806111e-20,3.9395918002787944e-20,3.2559762803403024e-20)
    sum e = 2.3984601899695656e-10
    sum de = 3.9291079096268815e-24
Info: cfl dt = 0.03965764396713545 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0436e+04 | 1536 |      1 | 5.047e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2828.9744039372554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.543142273266337, dt = 0.03965764396713545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 315.22 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.660335424044624e-20,-2.963903138175372e-20,2.899306739370236e-20)
    sum a = (-1.3390688885701766e-19,-7.686867220177949e-20,3.2747307161255904e-20)
    sum e = 2.3984608744043007e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.03965767186464747 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0011e+04 | 1536 |      1 | 5.118e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2789.4633528187082 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.582799917233473, dt = 0.029412326550691148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 293.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.204793493433933e-20,-3.4204512698508345e-20,2.9959960669272416e-20)
    sum a = (6.924233531723503e-21,1.2041911213743652e-19,-2.0361846336195223e-20)
    sum e = 2.3984567489667255e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.03965769524645418 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0750e+04 | 1536 |      1 | 4.995e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2119.739292100158 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 434                                                     [SPH][rank=0]
Info: time since start : 192.81707032900002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001050009 s
sph::RenderFieldGetter compute custom field took :  0.001039048 s
rho_t_ampl=0.000540765, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000187191, eps_t_phi=6.28319 rad
vx_t_ampl=2.43963e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.00s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 16.612212243784164, dt = 0.03965769524645418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.47 us    (2.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 354.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.993511257551515e-20,-2.652836390800107e-20,2.837142488986762e-20)
    sum a = (-3.914138857052504e-21,7.657872851973474e-20,-7.768179464572222e-20)
    sum e = 2.3984619562662215e-10
    sum de = 2.68833699079734e-24
Info: cfl dt = 0.03965772819197938 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0183e+04 | 1536 |      1 | 5.089e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805.4449673401227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.651869939030618, dt = 0.03965772819197938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 315.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.001637497393146e-20,-2.4360334965356942e-20,2.415415287154156e-20)
    sum a = (1.171532910501874e-20,6.48192905247716e-20,-3.1791940684435267e-20)
    sum e = 2.3984627200023076e-10
    sum de = 1.1787323728880644e-23
Info: cfl dt = 0.03965776492003542 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0974e+04 | 1536 |      1 | 4.959e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2878.9622504783324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.691527667222598, dt = 0.03965776492003542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 326.60 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.923083845590708e-20,-2.2023247432778353e-20,2.380329923910371e-20)
    sum a = (-6.628980150810892e-20,5.832904502169968e-20,5.204956058261303e-21)
    sum e = 2.398463425601065e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03965780481414554 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0449e+04 | 1536 |      1 | 5.044e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830.1708929161045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.731185432142635, dt = 0.03965780481414554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 282.85 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 28.79 us   (8.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.321269597830652e-20,-1.983929402273624e-20,2.4743323487427522e-20)
    sum a = (1.5724274093556944e-20,-3.2329740626516264e-20,-5.886195232132142e-20)
    sum e = 2.3984641343368926e-10
    sum de = -2.68833699079734e-24
Info: cfl dt = 0.03965784784243597 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1058e+04 | 1536 |      1 | 4.946e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2886.7917182433503 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.77084323695678, dt = 0.03965784784243597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 276.19 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.137074828087004e-20,-2.2919620360101024e-20,2.113860866478269e-20)
    sum a = (1.872014784850509e-19,2.110074759948699e-20,-6.717599257227332e-21)
    sum e = 2.398464845285783e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03965789397320689 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0816e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2864.2721864444634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.810501084799213, dt = 0.03965789397320689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 333.71 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.040032449466753e-20,-2.102275705748478e-20,2.190616923551346e-20)
    sum a = (-1.0264795293287518e-19,1.2160358781091858e-19,-2.8006223786562965e-20)
    sum e = 2.398465557464134e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03965794317415224 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0365e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2822.3751393766 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 16.85015897877242, dt = 0.03965794317415224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 310.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.042268696601304e-20,-1.4208037304877012e-20,2.0373368996856178e-20)
    sum a = (1.7776149653568897e-20,1.5842803250654537e-20,-1.3023334759008483e-20)
    sum e = 2.398466269896639e-10
    sum de = 5.37667398159468e-24
Info: cfl dt = 0.03965799332014328 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0777e+04 | 1536 |      1 | 4.991e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860.6559978719906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.889816921946572, dt = 0.03965799332014328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.6%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 279.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.713155983015229e-20,-1.5677109101246954e-20,2.0153984954791514e-20)
    sum a = (9.2882921389848e-20,1.6998815922607967e-20,2.1964036339831334e-20)
    sum e = 2.398466981619859e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039658044711014646 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1080e+04 | 1536 |      1 | 4.942e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2888.794012602182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.929474915266717, dt = 0.039658044711014646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.5%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 275.77 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.197139753071629e-20,-1.4979302643231597e-20,2.1718800154657995e-20)
    sum a = (9.73726689023494e-20,-1.537369476145042e-19,4.2735863282445687e-20)
    sum e = 2.3984676916865664e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039658099053134076 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0923e+04 | 1536 |      1 | 4.967e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.236394359714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.96913295997773, dt = 0.029409801103742694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 278.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.923556345070034e-20,-2.288615781648233e-20,2.3387538414598565e-20)
    sum a = (-8.281992771929433e-20,4.7483660213024515e-20,-1.534412172266475e-20)
    sum e = 2.398461107942446e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.039658141720340705 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1247e+04 | 1536 |      1 | 4.916e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2153.851974618195 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 444                                                     [SPH][rank=0]
Info: time since start : 193.63513792900002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008990970000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008880470000000001 s
rho_t_ampl=0.000592944, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000193387, eps_t_phi=6.28319 rad
vx_t_ampl=2.20725e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.38s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 16.998542761081474, dt = 0.039658141720340705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.25 us    (2.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 380.45 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.488330014063423e-20,-1.8044431959798803e-20,2.1924958657192356e-20)
    sum a = (-3.047339940611811e-21,4.438036309596417e-20,3.866819799462859e-20)
    sum e = 2.398468794387143e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.039658200647729194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0926e+04 | 1536 |      1 | 4.967e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.5066748941913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.038200902801815, dt = 0.039658200647729194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 313.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.354247056676504e-20,-1.6346174805395344e-20,2.452948392694483e-20)
    sum a = (-3.0547889937999734e-20,-5.662951070252618e-21,-1.3988294247578818e-20)
    sum e = 2.398469557414166e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03965826290523996 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0577e+04 | 1536 |      1 | 5.023e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2842.0933717455855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.077859103449544, dt = 0.03965826290523996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.5%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 281.24 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.23 us   (95.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.527606839964642e-20,-1.7563920414475766e-20,2.2930601608709196e-20)
    sum a = (1.171532910501874e-20,1.4572831935528114e-20,6.496676988063308e-20)
    sum e = 2.398470253405552e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.039658327987545636 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0568e+04 | 1536 |      1 | 5.025e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2841.2529901940047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.117517366354782, dt = 0.039658327987545636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 277.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.3962326291916e-20,-1.6584790516630492e-20,2.707268542237592e-20)
    sum a = (-1.3815284917427012e-19,-7.644923889164308e-20,-4.200911719937946e-20)
    sum e = 2.3984709432210805e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03965839585708339 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1276e+04 | 1536 |      1 | 4.911e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907.0339450505203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.157175694342328, dt = 0.03965839585708339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 308.66 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.246779065949029e-20,-2.142113326847101e-20,2.3285428814582354e-20)
    sum a = (-1.5244148756247217e-19,-3.5109935722855165e-20,2.29075035069643e-20)
    sum e = 2.3984716262582635e-10
    sum de = 4.342698215903395e-24
Info: cfl dt = 0.03965846647767026 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0093e+04 | 1536 |      1 | 5.104e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2797.160021781259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.196834090199413, dt = 0.03965846647767026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.5%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 285.22 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.88739764013098e-20,-2.1993911495329234e-20,2.5481149795337963e-20)
    sum a = (-1.5961289422271196e-20,-4.2687454327361424e-20,-4.555993751602691e-20)
    sum e = 2.39847230169072e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.039658539812644826 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9899e+04 | 1536 |      1 | 5.137e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2779.136518148067 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.236492556677085, dt = 0.039658539812644826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.6%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 276.39 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.673406657634683e-20,-2.3836375018536906e-20,2.2316652342187648e-20)
    sum a = (1.0161862921960186e-19,1.575955525367666e-20,3.960425399902186e-21)
    sum e = 2.398472968709037e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.03965861582484135 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9987e+04 | 1536 |      1 | 5.122e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2787.3128420640737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.27615109648973, dt = 0.03965861582484135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.5%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 305.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.019244350383349e-20,-2.205241142830374e-20,2.3455669973743323e-20)
    sum a = (2.4067213664298614e-20,-3.728440835441994e-20,-8.328563472654009e-20)
    sum e = 2.3984736265250366e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.0396586944766109 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9747e+04 | 1536 |      1 | 5.164e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2764.9626507939956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.31580971231457, dt = 0.0396586944766109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 316.25 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.109987361948233e-20,-2.4582510383422902e-20,1.8422641441441456e-20)
    sum a = (8.279284025315556e-20,-1.198245220855802e-19,9.05859431144148e-21)
    sum e = 2.398474274370732e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.03965877572983175 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9271e+04 | 1536 |      1 | 5.248e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2720.7436417331637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.355468406791182, dt = 0.029404871587594528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 298.79 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.732117209312368e-20,-2.9743955634135985e-20,2.0520134026983214e-20)
    sum a = (1.334057707334504e-21,-2.5732390184548587e-21,-1.6220423856225598e-20)
    sum e = 2.3984652569505607e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.039658838006789175 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0018e+04 | 1536 |      1 | 5.117e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2068.773924230424 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 454                                                     [SPH][rank=0]
Info: time since start : 194.458652521 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001033819 s
sph::RenderFieldGetter compute custom field took :  0.0009417770000000001 s
rho_t_ampl=0.00063942, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000200768, eps_t_phi=6.28319 rad
vx_t_ampl=1.93252e-05, 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.384873278378777, dt = 0.039658838006789175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.89 us    (2.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 492.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 346.62 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.820151474263377e-20,-2.812177616783322e-20,1.9505187723329592e-20)
    sum a = (1.0717155977805005e-19,8.911227137472567e-20,-7.915414275465906e-21)
    sum e = 2.3984752639460045e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.039658923332877016 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3035e+04 | 1536 |      1 | 6.668e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2141.0881100824263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.424532116385567, dt = 0.039658923332877016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 302.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.225581592517339e-20,-2.2768919877100456e-20,1.9355954430228626e-20)
    sum a = (-1.5640302948526753e-19,1.3539001111914568e-19,-5.965848549527412e-21)
    sum e = 2.398475934920368e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03965901151573853 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3135e+04 | 1536 |      1 | 6.639e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2150.432416174934 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.464191039718443, dt = 0.03965901151573853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.5%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 299.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.356483303811056e-20,-1.6481836983220237e-20,1.915801361272802e-20)
    sum a = (1.0293914319386698e-19,-3.987287001963217e-20,7.687996452842761e-21)
    sum e = 2.3984765394789564e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.03965910215639868 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3797e+04 | 1536 |      1 | 6.455e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2211.9167032265036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.50385005123418, dt = 0.03965910215639868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 295.06 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.427383215251188e-20,-2.1538186039627322e-20,1.9733661647521196e-20)
    sum a = (-9.093939569439113e-20,1.106176859450047e-19,3.0395711698174515e-20)
    sum e = 2.3984771302949423e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.039659195211764836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4374e+04 | 1536 |      1 | 6.302e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2265.545970650367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.54350915339058, dt = 0.039659195211764836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 323.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.183123520522917e-20,-1.4166533169748366e-20,2.1389414910689865e-20)
    sum a = (5.606428304072263e-20,3.1719051685406626e-20,8.753106865359536e-21)
    sum e = 2.398477707172074e-10
    sum de = 0
Info: cfl dt = 0.039659290641252516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4342e+04 | 1536 |      1 | 6.310e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2262.626491453242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.583168348602346, dt = 0.039659290641252516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 296.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.6454373176683e-20,-1.4473806613760057e-20,2.130739277489523e-20)
    sum a = (4.8053164930180915e-20,7.39366763594569e-20,-7.630322931110266e-21)
    sum e = 2.3984782695027416e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03965938840392106 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4402e+04 | 1536 |      1 | 6.295e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2268.20462026607 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 17.6228276392436, dt = 0.03965938840392106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.0%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 477.91 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.468014414459345e-20,-1.0704442856490264e-20,2.0679901232121258e-20)
    sum a = (6.654713243642726e-20,1.80634001299044e-20,-7.345359579961155e-20)
    sum e = 2.3984788167007763e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.03965948845845176 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4181e+04 | 1536 |      1 | 6.352e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2247.656227065579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.662487027647522, dt = 0.03965948845845176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 340.64 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.197139753071629e-20,-1.1095571054076083e-20,1.6461513824923764e-20)
    sum a = (1.396020286126944e-19,-1.6949185878295236e-20,4.017116637257666e-20)
    sum e = 2.398479348205879e-10
    sum de = 5.169878828456423e-24
Info: cfl dt = 0.039659590763179466 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4441e+04 | 1536 |      1 | 6.284e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2271.8612009842177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.702146516105973, dt = 0.039659590763179466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 298.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.491511260156627e-20,-1.2462919363105551e-20,2.03078358157178e-20)
    sum a = (-4.5269927784422123e-20,-7.036132591709096e-20,6.623021718220859e-20)
    sum e = 2.3984798634829444e-10
    sum de = 5.169878828456423e-24
Info: cfl dt = 0.03965969527609811 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4422e+04 | 1536 |      1 | 6.289e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2270.1219690761545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.741806106869152, dt = 0.029397688806930944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.4%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 322.74 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.992629383723902e-20,-1.5590635539911365e-20,2.2771596775449106e-20)
    sum a = (-4.525638405135274e-20,4.9411859931241e-21,8.806583103834431e-20)
    sum e = 2.398468723832595e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.03965977441199987 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4716e+04 | 1536 |      1 | 6.215e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1702.969277733506 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 464                                                     [SPH][rank=0]
Info: time since start : 195.41043280600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00102876 s
sph::RenderFieldGetter compute custom field took :  0.0009183230000000001 s
rho_t_ampl=0.000679352, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000209062, eps_t_phi=6.28319 rad
vx_t_ampl=1.62497e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.16s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 17.771203795676083, dt = 0.03965977441199987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.44 us    (2.0%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 391.91 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.171406660239796e-20,-1.428847967258014e-20,2.658522605836232e-20)
    sum a = (1.4589309262342413e-19,9.492994041715838e-20,-6.376612898534095e-20)
    sum e = 2.398480634490684e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039659882415205586 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0899e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2872.1164237127155 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.810863570088085, dt = 0.039659882415205586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.8%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.3%)
   LB compute        : 296.41 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.228762838610542e-20,-8.738591163551832e-21,2.104545823919791e-20)
    sum a = (-7.27230747160672e-20,-3.876420668157042e-20,6.398682572576931e-20)
    sum e = 2.3984811429605775e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03965999275955689 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1293e+04 | 1536 |      1 | 4.908e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2908.763666544797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.85052345250329, dt = 0.03965999275955689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 283.36 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.939808824753297e-20,-1.2928128077216399e-20,2.6116508865203608e-20)
    sum a = (-4.1619891722222644e-20,4.6126840040248204e-20,4.725547284314405e-20)
    sum e = 2.398481593844399e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.039660105155961176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1306e+04 | 1536 |      1 | 4.906e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2910.027376070923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.890183445262846, dt = 0.039660105155961176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 285.04 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.008881863407166e-20,-9.414322923820312e-21,2.7658883220270743e-20)
    sum a = (1.2244889068031727e-19,6.673385061923045e-20,1.5347250953138596e-20)
    sum e = 2.3984820256855395e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03966021955720148 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1476e+04 | 1536 |      1 | 4.880e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925.810033993173 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.929843550418806, dt = 0.03966021955720148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 277.91 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.226054091996664e-20,-6.3583462081164015e-21,2.7634816844924944e-20)
    sum a = (2.8597592376008174e-20,-1.833290909296424e-19,-2.5571104593419878e-21)
    sum e = 2.3984824387277404e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966033591959058 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1313e+04 | 1536 |      1 | 4.905e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2910.6240841215226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.969503769976008, dt = 0.03966033591959058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 308.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.285646517501962e-20,-1.8587966833320688e-20,2.717835553279355e-20)
    sum a = (1.2013291232545229e-20,-1.0128196031978284e-20,-3.286249682699123e-20)
    sum e = 2.398482832612166e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.03966045419919495 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1313e+04 | 1536 |      1 | 4.905e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2910.6819919615677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.0091641058956, dt = 0.03966045419919495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 290.29 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.2693940378187e-20,-1.5555030335396923e-20,2.527405308076145e-20)
    sum a = (-5.455415680348611e-20,6.605874793494255e-20,7.886197482718133e-20)
    sum e = 2.3984832070064293e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.039660574351843274 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0984e+04 | 1536 |      1 | 4.957e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2880.1166992489248 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.048824560094793, dt = 0.039660574351843274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.6%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 282.30 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.6310117107713e-20,-1.1424456275270759e-20,3.061728594241252e-20)
    sum a = (8.756023429357937e-20,-4.177528340915197e-20,2.699409636004953e-21)
    sum e = 2.3984835616046804e-10
    sum de = -1.5509636485369269e-24
Info: cfl dt = 0.03966069633315444 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1453e+04 | 1536 |      1 | 4.884e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2923.6561707321134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.088485134446636, dt = 0.03966069633315444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 302.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.995810629817105e-20,-1.5220351994002648e-20,2.921402086846903e-20)
    sum a = (-8.026016216918041e-20,-1.5423047880068677e-19,-4.644891185859171e-21)
    sum e = 2.3984838961269544e-10
    sum de = 1.4475660719677984e-24
Info: cfl dt = 0.03966082009852587 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1631e+04 | 1536 |      1 | 4.856e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2940.291337758327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.12814583077979, dt = 0.029388482193599685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 303.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.566001792038249e-20,-2.1983198190850522e-20,2.8931874524226216e-20)
    sum a = (1.3478045963999304e-19,7.226203724689459e-20,5.520538802144087e-20)
    sum e = 2.3984711652861077e-10
    sum de = -3.618915179919496e-24
Info: cfl dt = 0.039660913088872936 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2033e+04 | 1536 |      1 | 4.795e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2206.395835621712 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 474                                                     [SPH][rank=0]
Info: time since start : 196.215423976 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001054618 s
sph::RenderFieldGetter compute custom field took :  0.000989817 s
rho_t_ampl=0.00071211, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000217989, eps_t_phi=6.28319 rad
vx_t_ampl=1.29435e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.54s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 18.15753431297339, dt = 0.039660913088872936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (2.4%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 351.28 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.731707834964082e-20,-1.5789387177444236e-20,3.200082505296286e-20)
    sum a = (3.74551938033865e-20,-7.3977861410054e-20,-3.7198755125257074e-20)
    sum e = 2.398484378377914e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.03966103971069734 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1251e+04 | 1536 |      1 | 4.915e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2904.93004613451 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.197195226062263, dt = 0.03966103971069734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 332.99 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.758795301102854e-20,-2.1622794692405507e-20,2.8693067403556883e-20)
    sum a = (-4.9658097298903136e-20,6.570654309034167e-20,3.368903843789842e-20)
    sum e = 2.3984846790381443e-10
    sum de = 2.3781442610899546e-24
Info: cfl dt = 0.03966116813155865 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1777e+04 | 1536 |      1 | 4.834e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2953.8424962854597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.23685626577296, dt = 0.03966116813155865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.5%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 294.45 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.133956707124841e-20,-1.624692463649625e-20,3.143495581898762e-20)
    sum a = (4.39561856766917e-20,-2.444606950707803e-20,-9.992830716887174e-21)
    sum e = 2.3984849372172494e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03966129817252956 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1754e+04 | 1536 |      1 | 4.837e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2951.757914720019 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.27651743390452, dt = 0.03966129817252956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 289.07 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.760149674409792e-20,-1.9003656273396593e-20,3.017239020191417e-20)
    sum a = (-1.4788402138462384e-19,4.2418948827288214e-21,-6.647889525140227e-20)
    sum e = 2.3984851735614225e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039661429783731925 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2064e+04 | 1536 |      1 | 4.790e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2980.5551200553173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.31617873207705, dt = 0.039661429783731925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.3%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 312.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.73597564205904e-20,-1.8267321598163344e-20,2.641558684174942e-20)
    sum a = (2.133815145081737e-20,-9.439771155176576e-21,4.167142802109589e-20)
    sum e = 2.3984853887354825e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.039661562919654725 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1875e+04 | 1536 |      1 | 4.819e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2962.9693076248163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.35584016186078, dt = 0.039661562919654725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.8%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 270.32 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (61.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.322214596789304e-20,-1.891238156449832e-20,3.021303903244178e-20)
    sum a = (3.833553645289658e-20,-4.2288672234237924e-20,1.0623477692447563e-19)
    sum e = 2.398485582634705e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.03966169753466103 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1956e+04 | 1536 |      1 | 4.807e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2970.57198069248 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.395501724780434, dt = 0.03966169753466103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 295.72 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.123798907322802e-20,-2.1241123300624975e-20,3.570683228490101e-20)
    sum a = (-6.040504948946079e-21,1.212689508017175e-19,4.329331605318342e-20)
    sum e = 2.3984857551816094e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966183358301131 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2079e+04 | 1536 |      1 | 4.788e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2981.977143263436 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.435163422315096, dt = 0.03966183358301131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.1%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 429.49 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.242983758333397e-20,-1.3187707476845077e-20,3.617574198972587e-20)
    sum a = (-6.815883667168417e-20,1.9662038432245377e-20,-1.0076343812463692e-20)
    sum e = 2.3984859063229896e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.039661971018875766 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1645e+04 | 1536 |      1 | 4.854e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2941.662887305949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.474825255898107, dt = 0.039661971018875766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 278.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.638460763959463e-20,-1.4422885351731603e-20,3.4717725049475e-20)
    sum a = (-1.3047355252392835e-19,2.8614842780164175e-20,3.1139954855998984e-20)
    sum e = 2.398486036031074e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03966210979634733 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1871e+04 | 1536 |      1 | 4.819e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2962.6838301611137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.514487226916984, dt = 0.02937760335371209 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 314.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.1382245142198e-20,-1.3404460111162552e-20,3.644990211333186e-20)
    sum a = (4.515480605333235e-20,1.8880063343980694e-19,5.651620207092433e-20)
    sum e = 2.3984723846514023e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03966221347603274 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4093e+04 | 1536 |      1 | 6.375e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1658.915349237769 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 484                                                     [SPH][rank=0]
Info: time since start : 197.02842 (s)                                                [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010778810000000002 s
sph::RenderFieldGetter compute custom field took :  0.0009599610000000001 s
rho_t_ampl=0.00073729, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000227271, eps_t_phi=6.28319 rad
vx_t_ampl=9.5041e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.93s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 18.543864830270696, dt = 0.03966221347603274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 357.12 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.704147869345984e-20,-3.562901185772611e-21,3.906420644736685e-20)
    sum a = (3.266071229682392e-20,7.292557022366057e-20,2.8780512423732947e-20)
    sum e = 2.398486197092508e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.03966235444431832 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1180e+04 | 1536 |      1 | 4.926e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2898.47435869927 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.583527043746727, dt = 0.03966235444431832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 401.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.603924244632529e-20,-2.968802160371564e-21,3.9655679910361656e-20)
    sum a = (1.5568521163259006e-20,-7.217441382394404e-20,1.7907364446598813e-20)
    sum e = 2.398486271107955e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.039662496657926455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1512e+04 | 1536 |      1 | 4.874e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2929.335414363046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.623189398191045, dt = 0.039662496657926455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 285.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.578191151800697e-20,-8.709175868291761e-21,4.015030336837915e-20)
    sum a = (-3.5592930506345955e-20,2.0426374841731092e-20,2.6296787741073743e-20)
    sum e = 2.398486321718909e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966264004596698 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1949e+04 | 1536 |      1 | 4.808e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2969.9473371422105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.66285189484897, dt = 0.03966264004596698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 295.59 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.820623973742703e-20,-6.06236802586375e-21,4.1359676131606384e-20)
    sum a = (-5.611168610646548e-20,3.137816938181229e-21,1.8719186619655158e-21)
    sum e = 2.398486350179565e-10
    sum de = 2.1713491079516976e-24
Info: cfl dt = 0.039662784557310884 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8998e+04 | 1536 |      1 | 5.297e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2695.6441362349424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.702514534894938, dt = 0.039662784557310884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 280.62 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.084726768595726e-20,-6.281276547378793e-21,4.094954424297927e-20)
    sum a = (1.17999774367024e-19,5.2259226454688806e-20,2.8043443780265847e-20)
    sum e = 2.398486357516246e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.0396629217660416 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1466e+04 | 1536 |      1 | 4.882e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925.0366014909473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.74217731945225, dt = 0.0396629217660416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (0.8%)
   patch tree reduce : 1.40 us    (0.2%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 578.10 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.282937770888085e-20,-3.234558242952784e-21,4.258084694083764e-20)
    sum a = (-5.722227221815512e-21,-1.6750889721531482e-20,5.894841551434931e-20)
    sum e = 2.3984863438446427e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03966301993332371 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1142e+04 | 1536 |      1 | 4.932e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2894.941128870269 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.78184024121829, dt = 0.03966301993332371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 312.97 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.533496832671723e-20,-5.267202760110355e-21,4.553180985845472e-20)
    sum a = (3.642587009011318e-20,-7.825064053418939e-20,-6.289924969223727e-20)
    sum e = 2.398486309268395e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03966311911183475 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1228e+04 | 1536 |      1 | 4.919e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2903.0003123851557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.821503261151616, dt = 0.03966311911183475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 305.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.304607743799102e-20,-9.590603074551536e-21,4.0620606238909653e-20)
    sum a = (-9.481290335223548e-20,-8.133753207712286e-21,-1.1846229484102721e-20)
    sum e = 2.39848625402521e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.039663219269816266 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0517e+04 | 1536 |      1 | 5.033e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.854641837222 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.86116638026345, dt = 0.039663219269816266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.4%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 321.44 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.936422891485951e-20,-8.523002443795008e-21,4.116320765212631e-20)
    sum a = (-2.8137105451649055e-20,1.2980354609906263e-20,4.712978496616084e-20)
    sum e = 2.39848617831175e-10
    sum de = -6.72084247699335e-25
Info: cfl dt = 0.03966332037545554 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0877e+04 | 1536 |      1 | 4.975e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870.312250002338 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.900829599533267, dt = 0.029365748034734906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 280.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.895114505624324e-20,-7.72289054115885e-21,4.371679833877334e-20)
    sum a = (-6.205061305739117e-20,1.657216187831866e-20,-2.1797104780760913e-20)
    sum e = 2.398472333390753e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.039663395787331676 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1127e+04 | 1536 |      1 | 4.935e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2142.320013146249 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 494                                                     [SPH][rank=0]
Info: time since start : 198.020192468 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009464660000000001 s
sph::RenderFieldGetter compute custom field took :  0.000791276 s
rho_t_ampl=0.000754697, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00023664, eps_t_phi=6.28319 rad
vx_t_ampl=6.02622e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.32s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 18.930195347568002, dt = 0.039663395787331676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.87 us    (2.1%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 399.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.193076633150812e-20,-7.013590426857069e-21,4.1840206306274094e-20)
    sum a = (2.005826867576041e-20,-2.3294979499335306e-20,5.957302806336011e-20)
    sum e = 2.3984860219184677e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03966344704399112 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3407e+04 | 1536 |      1 | 6.562e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2175.9405316150464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.969858743355335, dt = 0.03966344704399112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 337.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.945903504634521e-20,-8.727798501262166e-21,4.5816785842246843e-20)
    sum a = (1.4776212778699937e-20,5.231417016575996e-20,4.411030239706567e-20)
    sum e = 2.398485875389288e-10
    sum de = 1.0856745539758488e-24
Info: cfl dt = 0.0396634948676003 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4310e+04 | 1536 |      1 | 6.318e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2259.931076294044 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.009522190399327, dt = 0.0396634948676003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 302.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.898161845564936e-20,-5.153456564410435e-21,4.725970209467138e-20)
    sum a = (9.720337223898208e-20,-1.2934265907907329e-20,-4.220023042363703e-20)
    sum e = 2.398485726087362e-10
    sum de = -6.72084247699335e-25
Info: cfl dt = 0.03966354365212913 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4564e+04 | 1536 |      1 | 6.253e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2283.467751904242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.049185685266927, dt = 0.03966354365212913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 298.59 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.356751116116238e-20,-6.960777803667559e-21,4.3874202725356246e-20)
    sum a = (-2.58956176286657e-20,-8.332178320918839e-20,-2.0217134432345792e-21)
    sum e = 2.3984855565332966e-10
    sum de = 1.6026624368214911e-24
Info: cfl dt = 0.039663593378996595 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4651e+04 | 1536 |      1 | 6.231e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2291.569914268394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.088849228919056, dt = 0.039663593378996595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.8%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 292.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.693312882890475e-20,-1.1661299662061279e-20,4.459082548648212e-20)
    sum a = (-6.333049583244812e-20,1.533837689834314e-20,4.7908574663532457e-20)
    sum e = 2.398485368025158e-10
    sum de = -5.169878828456423e-26
Info: cfl dt = 0.03966364403146731 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4460e+04 | 1536 |      1 | 6.280e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2273.821453578269 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.128512822298052, dt = 0.03966364403146731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 302.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.024118563110225e-20,-9.09605842299157e-21,4.748126146037081e-20)
    sum a = (-5.181155085693548e-20,-1.577528669973238e-19,5.068530942774925e-20)
    sum e = 2.398485160882733e-10
    sum de = 0
Info: cfl dt = 0.039663695592662376 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4632e+04 | 1536 |      1 | 6.236e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2289.7919599675747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.16817646632952, dt = 0.039663695592662376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 292.73 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.204927399586525e-20,-1.878593811904585e-20,4.954669585416335e-20)
    sum a = (-7.661689797351562e-20,-2.4725562757392834e-21,1.2791166498705172e-20)
    sum e = 2.3984849354485946e-10
    sum de = 3.618915179919496e-25
Info: cfl dt = 0.03966371992308031 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4367e+04 | 1536 |      1 | 6.304e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2265.2285787412384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.20784016192218, dt = 0.03966371992308031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 331.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.556387272737087e-20,-1.580392288315054e-20,4.93025302247136e-20)
    sum a = (-3.530851211188885e-20,4.058214698790575e-20,-2.93237192098427e-20)
    sum e = 2.398484692039761e-10
    sum de = 1.2924697071141057e-25
Info: cfl dt = 0.03966371414725552 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7272e+04 | 1536 |      1 | 5.632e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2535.250127008762 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.24750388184526, dt = 0.03966371414725552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 329.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.616995478222589e-20,-1.3340801920476074e-20,4.7304226092571186e-20)
    sum a = (-9.647878251976994e-20,4.606696787845929e-20,5.083811301075653e-20)
    sum e = 2.3984844310276754e-10
    sum de = 1.809457589959748e-25
Info: cfl dt = 0.03966370945404475 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0833e+04 | 1536 |      1 | 4.982e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2866.2953145514493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.287167595992518, dt = 0.029358268872790916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.93 us   (10.1%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 272.76 us  (86.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.023307470304164e-20,-1.1879176532033927e-20,5.0386503082688223e-20)
    sum a = (-1.061625516643808e-19,4.608468450975465e-20,-4.805918496123624e-21)
    sum e = 2.3984711022436556e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039663706681345966 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0358e+04 | 1536 |      1 | 5.060e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2088.861537763737 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 504                                                     [SPH][rank=0]
Info: time since start : 198.936320181 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010369350000000001 s
sph::RenderFieldGetter compute custom field took :  0.000940154 s
rho_t_ampl=0.000764348, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000245839, eps_t_phi=6.28319 rad
vx_t_ampl=2.59977e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.70s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 19.31652586486531, dt = 0.039663706681345966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.92 us    (2.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.98 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.457045521851245e-20,-1.0051619050983678e-20,4.937907632205072e-20)
    sum a = (9.528016214312929e-21,5.789331029456325e-20,-3.983511445948952e-20)
    sum e = 2.3984839923471505e-10
    sum de = -2.5849394142282115e-25
Info: cfl dt = 0.039663703861863894 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0745e+04 | 1536 |      1 | 4.996e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2858.126085770547 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.356189571546654, dt = 0.039663703861863894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 294.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.191419057027915e-20,-7.520898459678713e-21,4.710437426183828e-20)
    sum a = (-3.3344670816827904e-20,-1.4894768388401182e-20,-7.083667785755545e-22)
    sum e = 2.3984836530872077e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.03966370212421537 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1503e+04 | 1536 |      1 | 4.876e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2928.5405875839847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.395853275408516, dt = 0.03966370212421537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.8%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 282.95 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.407780192811353e-20,-9.55531530128091e-21,4.785223367948475e-20)
    sum a = (-3.6859269548333524e-20,-2.523879286685688e-21,-1.5891698324227805e-20)
    sum e = 2.3984833309705227e-10
    sum de = -4.006656092053728e-25
Info: cfl dt = 0.039663701460310584 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0804e+04 | 1536 |      1 | 4.986e-02 | 0.1% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863.604766677489 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.435516977532732, dt = 0.039663701460310584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 286.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.55980859651521e-20,-9.411201516589476e-21,4.692079653161508e-20)
    sum a = (-4.0495761877463625e-20,6.683689260353417e-21,1.782668286288947e-20)
    sum e = 2.398482992266532e-10
    sum de = 2.972680326362443e-25
Info: cfl dt = 0.039663701867144546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1271e+04 | 1536 |      1 | 4.912e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907.0435552493905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.47518067899304, dt = 0.039663701867144546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 295.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.727750886575594e-20,-8.963120863342745e-21,4.829656666853477e-20)
    sum a = (9.271362472648068e-20,1.4649945408390522e-20,1.7426607157415847e-20)
    sum e = 2.398482638433624e-10
    sum de = -2.8434333556510326e-25
Info: cfl dt = 0.03966370334144984 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1548e+04 | 1536 |      1 | 4.869e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2932.7147510316017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.514844380860186, dt = 0.03966370334144984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 280.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.096358980547163e-20,-8.224008664726126e-21,4.8979836203321924e-20)
    sum a = (-7.32038772400304e-20,-5.1179046784252294e-20,5.558196186313157e-20)
    sum e = 2.3984822699297935e-10
    sum de = -7.108583389127582e-26
Info: cfl dt = 0.03966370587969851 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1245e+04 | 1536 |      1 | 4.916e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2904.564916235577 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.554508084201636, dt = 0.03966370587969851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.8%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 287.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.715688499310673e-20,-1.1559205838269687e-20,5.1941114125844714e-20)
    sum a = (6.517921539641929e-20,2.3693330911005615e-20,-4.7289005361402607e-20)
    sum e = 2.398481887229263e-10
    sum de = 1.454028420503369e-26
Info: cfl dt = 0.03966370947810486 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1475e+04 | 1536 |      1 | 4.880e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925.947713938135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.594171790081333, dt = 0.03966370947810486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 294.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.18276376511326e-20,-9.13456018760581e-21,4.8025334861904404e-20)
    sum a = (-9.403413870074579e-20,4.4033185899344726e-20,4.236637731876303e-20)
    sum e = 2.3984814908167813e-10
    sum de = -6.947024675738318e-26
Info: cfl dt = 0.039663714132624844 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1446e+04 | 1536 |      1 | 4.885e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2923.2695317917587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.63383549955944, dt = 0.039663714132624844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 308.15 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.87262650625218e-20,-6.984307394615253e-21,5.148377526659868e-20)
    sum a = (-4.779583400186258e-20,1.3601908379314902e-19,6.799657191116794e-20)
    sum e = 2.39848108117584e-10
    sum de = 1.2924697071141057e-25
Info: cfl dt = 0.039663719838918456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1239e+04 | 1536 |      1 | 4.917e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2904.036000960466 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.673499213692065, dt = 0.029357168470550477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 284.28 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.920749082814343e-20,-1.1660043163387848e-21,5.3988256439351036e-20)
    sum a = (1.0299331812614452e-19,1.8052844714403728e-20,2.363573073221005e-20)
    sum e = 2.3984688859311504e-10
    sum de = -6.462348535570529e-27
Info: cfl dt = 0.03966372474642565 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1480e+04 | 1536 |      1 | 4.879e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2166.014506826674 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 514                                                     [SPH][rank=0]
Info: time since start : 199.748927911 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010441180000000001 s
sph::RenderFieldGetter compute custom field took :  0.00088977 s
rho_t_ampl=0.000766454, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000254635, eps_t_phi=6.28319 rad
vx_t_ampl=-6.92209e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20.09s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 19.702856382162615, dt = 0.03966372474642565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.53 us    (2.8%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 319.57 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.290542253429483e-20,-2.182273669710268e-21,5.42745832133057e-20)
    sum a = (1.5588836762863086e-20,7.314483254874944e-20,4.182031523553447e-21)
    sum e = 2.3984804199595317e-10
    sum de = -3.877409121342317e-25
Info: cfl dt = 0.03966373226244494 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0962e+04 | 1536 |      1 | 4.961e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2878.261300586268 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.74252010690904, dt = 0.03966373226244494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 296.03 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.403039886237069e-20,1.811553655841308e-21,5.4054655106611373e-20)
    sum a = (1.232750583975498e-19,5.441967424645528e-20,4.910722779864321e-20)
    sum e = 2.398479932006763e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03966374082695871 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1691e+04 | 1536 |      1 | 4.847e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2946.065296379523 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.782183839171484, dt = 0.03966374082695871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 298.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.700289436599312e-20,3.598625427003482e-21,5.68933819411942e-20)
    sum a = (-2.4812118983114834e-20,-1.246933279686077e-19,2.578552833361762e-20)
    sum e = 2.398479478410657e-10
    sum de = -4.3943970041879595e-25
Info: cfl dt = 0.039663750425046274 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1610e+04 | 1536 |      1 | 4.859e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2938.561747740384 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.821847579998444, dt = 0.039663750425046274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 285.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.089841059007522e-20,-4.89903542249373e-21,5.74536197799813e-20)
    sum a = (-3.1326654589489415e-20,5.564105708853774e-20,-4.9154516529677055e-21)
    sum e = 2.3984790130861e-10
    sum de = 2.3264454728053903e-25
Info: cfl dt = 0.03966376105125366 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1540e+04 | 1536 |      1 | 4.870e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2931.981017069482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.86151133042349, dt = 0.03966376105125366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 291.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.22714065299842e-20,8.848131395271222e-22,5.664979647616636e-20)
    sum a = (-4.4538566198675294e-20,8.495494050600637e-20,-3.812390830013595e-20)
    sum e = 2.398478537534651e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966377269989542 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1518e+04 | 1536 |      1 | 4.873e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2929.986131296411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.901175091474745, dt = 0.03966377269989542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.5%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 283.11 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.428434385742167e-20,4.8355624000328095e-21,5.447907229825023e-20)
    sum a = (-2.935604142789378e-20,2.026869087136662e-20,-3.03499354836811e-20)
    sum e = 2.398478052290502e-10
    sum de = -3.360421238496675e-25
Info: cfl dt = 0.039663785365048825 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1617e+04 | 1536 |      1 | 4.858e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2939.164745753343 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.94083886417464, dt = 0.039663785365048825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.8%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 282.68 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.517992320663482e-20,4.356571879419716e-21,5.3429451516765534e-20)
    sum a = (-2.978266901957943e-20,-1.0569004781816929e-19,1.5247052252829564e-20)
    sum e = 2.398477557898106e-10
    sum de = 1.2924697071141057e-25
Info: cfl dt = 0.039663799040558216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0869e+04 | 1536 |      1 | 4.976e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2869.6018739896786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.98050264953969, dt = 0.039663799040558216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 314.82 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.640901698268158e-20,-2.3327757581834528e-21,5.493848210071858e-20)
    sum a = (-4.007590615231266e-20,2.192775684017318e-20,2.713026123910803e-20)
    sum e = 2.3984770549059107e-10
    sum de = 3.360421238496675e-25
Info: cfl dt = 0.039663813491104365 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1548e+04 | 1536 |      1 | 4.869e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2932.750909044127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.020166448580248, dt = 0.039663813491104365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.62 us   (8.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 289.59 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.817986008150377e-20,1.0673625573236681e-21,5.625023832906825e-20)
    sum a = (-2.026819653833589e-20,4.316512800429901e-20,-6.51273517367618e-20)
    sum e = 2.3984765438646856e-10
    sum de = -5.169878828456423e-26
Info: cfl dt = 0.03966380492234945 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1382e+04 | 1536 |      1 | 4.894e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2917.3652737249517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.05983026207135, dt = 0.029356637388570306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 271.78 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.833561301180171e-20,2.755832248376202e-21,5.250867390294713e-20)
    sum a = (-9.454202869084776e-20,-1.1602551322605611e-19,3.917208888120235e-20)
    sum e = 2.3984659474828003e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.0396637994189479 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1048e+04 | 1536 |      1 | 4.947e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2136.235729511122 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 524                                                     [SPH][rank=0]
Info: time since start : 200.560623579 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009094470000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008138990000000001 s
rho_t_ampl=0.0007614, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000262816, eps_t_phi=6.28319 rad
vx_t_ampl=-3.77515e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20.48s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 20.08918689945992, dt = 0.0396637994189479 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.60 us    (2.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 352.24 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.322490064984999e-20,-4.1820111479258154e-21,5.559332820817701e-20)
    sum a = (-4.8655861051768584e-20,-1.7438440835768837e-19,3.896468388371794e-20)
    sum e = 2.3984757350270973e-10
    sum de = 1.6026624368214911e-24
Info: cfl dt = 0.03966379288254892 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5591e+04 | 1536 |      1 | 6.002e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2379.027462046353 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.128850698878868, dt = 0.03966379288254892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 277.77 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.422713689698455e-20,-1.2256721317644882e-20,5.713470212436922e-20)
    sum a = (-5.388374201655151e-20,-6.255739534471524e-20,5.1340811828845436e-20)
    sum e = 2.3984751521920694e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966378761401151 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4564e+04 | 1536 |      1 | 6.253e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2283.4935635786596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.168514491761417, dt = 0.03966378761401151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.8%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 298.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.642460758749239e-20,-1.2520837338799732e-20,5.941651526842638e-20)
    sum a = (4.465368792976507e-20,8.597912084115728e-21,-1.9178412148829392e-21)
    sum e = 2.398474616810287e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.039663783543781216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4462e+04 | 1536 |      1 | 6.279e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2274.0513501255455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.208178279375428, dt = 0.039663783543781216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 328.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.276441372549087e-20,-1.0768643325551592e-20,5.828422647814161e-20)
    sum a = (1.8952422870645057e-19,-1.0761192453746928e-19,-4.8491071089545535e-20)
    sum e = 2.398474075140201e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039663780669727165 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4975e+04 | 1536 |      1 | 6.150e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2321.7215958113807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.247842062919208, dt = 0.039663780669727165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 329.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.230865179592501e-20,-1.7341969843540842e-20,5.543725201566593e-20)
    sum a = (-9.929587899820218e-20,-6.629379502461638e-20,-1.299812343153166e-20)
    sum e = 2.3984735286194937e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966377898849029 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5921e+04 | 1536 |      1 | 5.926e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2409.633768942066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.287505843588935, dt = 0.03966377898849029 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 312.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.203982400627874e-20,-1.915146019629736e-20,5.562558956622776e-20)
    sum a = (4.299458062876531e-20,-3.64596889172373e-20,1.1108099662241164e-20)
    sum e = 2.3984729777957036e-10
    sum de = -3.618915179919496e-25
Info: cfl dt = 0.039663769341805516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0879e+04 | 1536 |      1 | 4.974e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870.550101944415 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.327169622577426, dt = 0.039663769341805516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.7%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 279.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.748574376169775e-20,-2.0006183499171307e-20,5.654425062157634e-20)
    sum a = (1.4370577973271832e-19,1.6982617009447098e-20,-1.4669136384324483e-20)
    sum e = 2.398472423213727e-10
    sum de = 0
Info: cfl dt = 0.03966373291658483 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9730e+04 | 1536 |      1 | 5.166e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2763.8043020614323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.366833391919233, dt = 0.03966373291658483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 302.08 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.985385017709883e-20,-1.827341892330493e-20,5.545120674150239e-20)
    sum a = (7.347475190141812e-21,1.1998491910110663e-19,-2.563841859550108e-20)
    sum e = 2.398471865405965e-10
    sum de = -1.9645539548134407e-24
Info: cfl dt = 0.03966369807166377 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3856e+04 | 1536 |      1 | 6.439e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217.7092788629243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.406497124835816, dt = 0.03966369807166377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.6%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 282.66 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.215628479889442e-20,-1.1471938698824562e-20,5.421675090733753e-20)
    sum a = (-2.6119089224310567e-20,1.987825209476346e-20,-4.266272806697154e-21)
    sum e = 2.398471304949745e-10
    sum de = -5.686866711302065e-25
Info: cfl dt = 0.03966366480902064 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0510e+04 | 1536 |      1 | 5.034e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.3010995102436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.44616082290748, dt = 0.02935659384974798 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 275.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.364609543652686e-20,-1.287334473505488e-20,5.451535683815804e-20)
    sum a = (1.4988849387889295e-19,3.555732695511924e-20,1.22071047024681e-19)
    sum e = 2.39846259813242e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.03966364137817099 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1542e+04 | 1536 |      1 | 4.870e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2170.243811514271 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 534                                                     [SPH][rank=0]
Info: time since start : 201.44977069700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001003783 s
sph::RenderFieldGetter compute custom field took :  0.000919806 s
rho_t_ampl=0.000749729, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000270202, eps_t_phi=6.28319 rad
vx_t_ampl=-6.58435e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20.86s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 20.475517416757228, dt = 0.03966364137817099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.5%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 345.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.509999986974441e-20,-1.1233389119098545e-20,6.12115557631799e-20)
    sum a = (-2.5496077503118818e-20,-9.611547915464967e-20,-1.337845456000684e-20)
    sum e = 2.3984704297819824e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03966356452097285 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3909e+04 | 1536 |      1 | 6.424e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2222.650287391543 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.515181058135397, dt = 0.03966356452097285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 302.91 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (61.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.963715044798866e-20,-1.765624000121826e-20,5.799470833969503e-20)
    sum a = (4.374625781411622e-21,-4.550704644361939e-20,-6.158261739354344e-20)
    sum e = 2.398469809340416e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.03966346422120571 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5010e+04 | 1536 |      1 | 6.142e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2324.96821970086 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 20.55484462265637, dt = 0.03966346422120571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 303.84 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.88312983303602e-20,-1.845849456475016e-20,5.459615393669112e-20)
    sum a = (-2.417624071550717e-19,-2.9250862569201376e-20,-8.088572481993396e-20)
    sum e = 2.398469244454297e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03966336635341033 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6286e+04 | 1536 |      1 | 5.843e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2443.5641061479005 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.594508086877575, dt = 0.03966336635341033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 308.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.331632084806835e-20,-1.9296023675250864e-20,5.1005139745015425e-20)
    sum a = (-3.337175828296668e-20,1.205125857190133e-19,1.1902993678781106e-20)
    sum e = 2.3984686787081386e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03966326949946883 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1224e+04 | 1536 |      1 | 4.919e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2902.57982905629 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 20.634171453230984, dt = 0.03966326949946883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (0.9%)
   patch tree reduce : 1.70 us    (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.2%)
   LB compute        : 543.20 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.054662743537894e-20,-1.1545384352861964e-20,5.331740785878382e-20)
    sum a = (-2.075577092883378e-20,2.035538068273706e-19,-5.042442247731512e-20)
    sum e = 2.3984681133819724e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.039663172084388465 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7505e+04 | 1536 |      1 | 5.584e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2556.88111069412 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 20.67383472273045, dt = 0.039663172084388465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 308.52 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.108160489161968e-20,-1.825547083172763e-21,5.008136076071123e-20)
    sum a = (-5.928769151123645e-20,-9.375471158194012e-20,2.1049558623261126e-20)
    sum e = 2.398467548981036e-10
    sum de = -1.137373342260413e-24
Info: cfl dt = 0.03966307719065551 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7338e+04 | 1536 |      1 | 5.618e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2541.3886296584233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.71349789481484, dt = 0.03966307719065551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 293.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.423052283025189e-20,-1.1440248479650492e-20,5.2333693435191296e-20)
    sum a = (-1.1254842180659622e-20,-1.1178490873439915e-20,-2.9833561079066256e-20)
    sum e = 2.3984669860142524e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.03966298482809961 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7328e+04 | 1536 |      1 | 5.621e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2540.426240728626 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.753160972005496, dt = 0.03966298482809961 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 295.49 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.3654914174803e-20,-1.0245662125066646e-20,5.0141314802516327e-20)
    sum a = (6.914075731921465e-21,-5.1326605193925424e-20,-5.890649593763302e-20)
    sum e = 2.39846642498044e-10
    sum de = 0
Info: cfl dt = 0.03966289500579677 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1426e+04 | 1536 |      1 | 4.888e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2921.3598085169306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.792823956833594, dt = 0.03966289500579677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 280.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.313348045163164e-20,-1.3078299508143944e-20,4.7228352951877524e-20)
    sum a = (2.547576190351474e-20,-2.3741900371240708e-20,-1.441266037773445e-20)
    sum e = 2.398465866370687e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.03966280773207179 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5722e+04 | 1536 |      1 | 5.972e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2391.12356687859 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 20.83248685183939, dt = 0.029361082215139334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 312.16 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.188068514271344e-20,-1.3227836076583862e-20,4.768755880969611e-20)
    sum a = (-2.184536425426587e-19,-9.617018313900023e-20,-3.6241980489516694e-21)
    sum e = 2.3984591576304026e-10
    sum de = 2.68833699079734e-24
Info: cfl dt = 0.03966274518591439 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1765e+04 | 1536 |      1 | 4.836e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2185.912472514535 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 544                                                     [SPH][rank=0]
Info: time since start : 202.31884864300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001001238 s
sph::RenderFieldGetter compute custom field took :  0.000908164 s
rho_t_ampl=0.000732119, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000276642, eps_t_phi=6.28319 rad
vx_t_ampl=-9.06598e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.25s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 20.86184793405453, dt = 0.03966274518591439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.76 us    (2.1%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 390.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.041580791701117e-19,-1.810552424793112e-20,4.770219363068432e-20)
    sum a = (2.4676681652420976e-20,-4.043023712493201e-20,5.44652671197894e-20)
    sum e = 2.3984650037217443e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03966266193717605 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0552e+04 | 1536 |      1 | 5.027e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.1035027546013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.901510679240445, dt = 0.03966266193717605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 279.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (60.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.840199261562273e-20,-1.860381194290772e-20,5.1014424935260266e-20)
    sum a = (1.345502161778135e-19,-1.285198012438726e-20,-2.1237177709477774e-20)
    sum e = 2.398464400558887e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039662581688959274 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0510e+04 | 1536 |      1 | 5.034e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2836.170557780391 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.94117334117762, dt = 0.039662581688959274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 295.35 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.081073023023196e-20,-1.856594504078111e-20,4.867082340097404e-20)
    sum a = (1.6238935950193605e-20,3.3786869072337714e-21,2.1206339229789038e-20)
    sum e = 2.398463855824825e-10
    sum de = -1.5509636485369269e-24
Info: cfl dt = 0.039662504008836315 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0773e+04 | 1536 |      1 | 4.991e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2860.6317177851906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.98083592286658, dt = 0.039662504008836315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 275.04 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.253755619657866e-20,-1.8110642826737615e-20,5.035362964457e-20)
    sum a = (-5.544127131953088e-20,-1.461581906974895e-20,6.406038570305687e-23)
    sum e = 2.3984633151070104e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966242890667277 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1273e+04 | 1536 |      1 | 4.912e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907.089727738573 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.020498426875417, dt = 0.03966242890667277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.9%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 273.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.621467972491692e-20,-1.904670788583883e-20,4.993689257535869e-20)
    sum a = (6.969605037505947e-20,-5.0931233006741326e-20,-4.9182299042856503e-20)
    sum e = 2.398462779461183e-10
    sum de = -3.412120026781239e-24
Info: cfl dt = 0.03966235638649247 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1483e+04 | 1536 |      1 | 4.879e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2926.6519679752755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.06016085578209, dt = 0.03966235638649247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 272.95 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.108160489161968e-20,-2.1787237303002845e-20,4.7009591587947343e-20)
    sum a = (8.623972031931425e-21,2.5887245379610114e-21,-3.2782971157229915e-20)
    sum e = 2.398462249307992e-10
    sum de = -2.5849394142282115e-24
Info: cfl dt = 0.03966228645163919 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1313e+04 | 1536 |      1 | 4.905e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2910.786897119755 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.099823212168584, dt = 0.03966228645163919 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 308.76 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.18332820769706e-20,-2.0622621748355745e-20,4.603456198871909e-20)
    sum a = (-1.6983841269009828e-20,2.228730062899953e-20,-2.169077241619741e-20)
    sum e = 2.398461725063226e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.039662219104730626 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1420e+04 | 1536 |      1 | 4.889e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2920.756987248896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.139485498620225, dt = 0.039662219104730626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.6%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 271.31 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.29844993878684e-20,-1.9348413056781955e-20,4.5394228802520745e-20)
    sum a = (-8.60027049906e-21,-2.5366218365219896e-20,-2.727216356854198e-20)
    sum e = 2.3984612071308913e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.03966215434766347 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1187e+04 | 1536 |      1 | 4.925e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2899.113894024941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.179147717724955, dt = 0.03966215434766347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 299.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.318088351737449e-20,-2.1298591582057085e-20,4.4201870862273443e-20)
    sum a = (-9.177233527815837e-20,-1.4436944579914642e-19,-1.5232353035650045e-20)
    sum e = 2.3984606959049046e-10
    sum de = 2.1713491079516976e-24
Info: cfl dt = 0.03966209218161747 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1533e+04 | 1536 |      1 | 4.871e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2931.257650166465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.21880987207262, dt = 0.029368579279221763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 286.43 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (61.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.761645609759835e-20,-2.789930977112709e-20,4.399328070637207e-20)
    sum a = (-1.1012070765390881e-19,2.482170143878746e-21,8.833376801181633e-20)
    sum e = 2.3984559157568513e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.039662048267771984 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1053e+04 | 1536 |      1 | 4.946e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2137.48735407799 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 554                                                     [SPH][rank=0]
Info: time since start : 203.12730772600003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000864513 s
sph::RenderFieldGetter compute custom field took :  0.000789553 s
rho_t_ampl=0.000709353, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000282018, eps_t_phi=6.28319 rad
vx_t_ampl=-1.11778e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.63s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 21.24817845135184, dt = 0.039662048267771984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.92 us    (2.2%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 389.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0206557241089159e-19,-2.5644384025488958e-20,4.901757379524732e-20)
    sum a = (-1.5808922425240607e-20,2.2332408931375645e-20,5.118824773864919e-20)
    sum e = 2.398459914968056e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.0396619901508154 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1129e+04 | 1536 |      1 | 4.934e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2893.698896889579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.287840499619612, dt = 0.0396619901508154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.7%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 295.28 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0113105482910397e-19,-2.436503030250502e-20,5.031116786389024e-20)
    sum a = (8.095766442225378e-21,-6.139827201190121e-20,7.721589999007472e-20)
    sum e = 2.3984593762548046e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.03966193509032702 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1270e+04 | 1536 |      1 | 4.912e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2906.777579338132 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.327502489770428, dt = 0.03966193509032702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.8%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 281.88 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.001423623150388e-19,-2.845947010604372e-20,5.388985412085921e-20)
    sum a = (-1.744398960004221e-19,7.157995190188666e-21,-5.188494928671555e-20)
    sum e = 2.398458893849892e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966188261443398 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1749e+04 | 1536 |      1 | 4.838e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2951.275823078953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.367164424860754, dt = 0.03966188261443398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 281.29 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1069293037609036e-19,-2.6816062425310914e-20,4.9271804600734936e-20)
    sum a = (-1.0041662290969387e-19,-8.620572211047162e-20,1.0300702142804211e-20)
    sum e = 2.3984584193847117e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.0396618327255912 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1497e+04 | 1536 |      1 | 4.877e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2927.9236129054802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.40682630747519, dt = 0.0396618327255912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 269.87 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.131443460616492e-19,-3.208766954392918e-20,5.0913549329727196e-20)
    sum a = (-8.169918380780266e-20,-1.2448056471757838e-19,7.220940900375702e-20)
    sum e = 2.3984579536493367e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.03966178542090582 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1600e+04 | 1536 |      1 | 4.861e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2937.481012304614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.44648814020078, dt = 0.03966178542090582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 341.89 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.16015617472359e-19,-3.778304737303878e-20,5.500520980289138e-20)
    sum a = (-7.494424693944648e-20,-8.52802761184486e-20,2.5873441318574114e-20)
    sum e = 2.3984574969470805e-10
    sum de = 1.4475660719677984e-24
Info: cfl dt = 0.03966174069685009 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9078e+04 | 1536 |      1 | 5.282e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2703.001308679829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.48614992562169, dt = 0.03966174069685009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.4%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 280.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1888688888306878e-19,-4.0387914612377905e-20,5.511251191960738e-20)
    sum a = (4.1545401190341026e-21,1.0255350060496331e-19,-4.875384999720639e-20)
    sum e = 2.398457049574028e-10
    sum de = -2.3781442610899546e-24
Info: cfl dt = 0.03966169854921735 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1531e+04 | 1536 |      1 | 4.871e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2931.005827897065 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.52581166631854, dt = 0.03966169854921735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 314.80 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1722100971553432e-19,-3.2594699824412493e-20,5.169892727936567e-20)
    sum a = (-3.393043727207884e-20,-2.7771682571661237e-20,8.932159714259314e-20)
    sum e = 2.3984566118113725e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.039661658973128074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1567e+04 | 1536 |      1 | 4.866e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2934.3629793767245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.565473364867756, dt = 0.039661658973128074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 312.10 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1930674460821975e-19,-3.6280751106483007e-20,5.797972338492115e-20)
    sum a = (-1.8131672646640277e-20,8.387722671421647e-20,9.872248319108143e-21)
    sum e = 2.398456183927721e-10
    sum de = 9.305781891221561e-25
Info: cfl dt = 0.03966162196303571 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1436e+04 | 1536 |      1 | 4.886e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2922.1779643044674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.605135023840884, dt = 0.029373944808263275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 286.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1950990060426054e-19,-3.1602634603381803e-20,5.66941637728456e-20)
    sum a = (-4.064135700795952e-20,-2.2834677743201744e-20,7.931969765964989e-20)
    sum e = 2.3984531119026275e-10
    sum de = 2.68833699079734e-24
Info: cfl dt = 0.039661596672841054 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0630e+04 | 1536 |      1 | 5.015e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2108.719792994403 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 564                                                     [SPH][rank=0]
Info: time since start : 203.93600223500002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009680460000000001 s
sph::RenderFieldGetter compute custom field took :  0.000886033 s
rho_t_ampl=0.000682297, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000286247, eps_t_phi=6.28319 rad
vx_t_ampl=-1.28893e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.02s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 21.634508968649147, dt = 0.039661596672841054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (2.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 343.17 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2131121710248884e-19,-3.40750801088433e-20,6.086008240163599e-20)
    sum a = (-5.956872397242621e-20,-7.801783116945567e-20,-1.9228660930845675e-20)
    sum e = 2.3984555385269574e-10
    sum de = 4.446095792472524e-24
Info: cfl dt = 0.03966156363297836 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6330e+04 | 1536 |      1 | 5.834e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2447.550969174568 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.674170565321987, dt = 0.03966156363297836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 2.69 us    (0.8%)
   LB compute        : 315.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2407413864864356e-19,-3.826358537096547e-20,5.814315101695541e-20)
    sum a = (1.4257826395469193e-19,-1.547029322216226e-19,1.3468954023400951e-21)
    sum e = 2.398455100082598e-10
    sum de = -1.7577588016751838e-24
Info: cfl dt = 0.03966153362562893 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4444e+04 | 1536 |      1 | 6.284e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2272.197046707822 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.713832128954966, dt = 0.03966153362562893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 300.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.14471631902449e-19,-4.592096603918226e-20,5.86046003226418e-20)
    sum a = (-5.2204319115947667e-20,1.16930808120604e-19,6.283346138845247e-21)
    sum e = 2.3984547116163826e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03966150615377616 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4122e+04 | 1536 |      1 | 6.368e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2242.2974464333543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.753493662580595, dt = 0.03966150615377616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 326.70 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2044441818604815e-19,-3.5895508613209566e-20,5.895170089763434e-20)
    sum a = (-5.874594218846102e-20,1.8985035293713916e-20,-2.8937300053306554e-21)
    sum e = 2.3984543337931613e-10
    sum de = -1.9645539548134407e-24
Info: cfl dt = 0.03966148121269838 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4752e+04 | 1536 |      1 | 6.206e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2300.8306266092063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.793155168734373, dt = 0.03966148121269838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 294.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2286874640546821e-19,-3.708436797910294e-20,5.865494294840932e-20)
    sum a = (-6.2741343443929846e-21,1.677053623559196e-19,2.421169879012459e-20)
    sum e = 2.3984539671254864e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.03966145879317222 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4511e+04 | 1536 |      1 | 6.267e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2278.4729159825365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.83281664994707, dt = 0.03966145879317222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 300.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2216447228586017e-19,-2.7484294872444293e-20,6.015273496975271e-20)
    sum a = (1.6012078421281395e-20,1.0255136786379394e-19,6.621118533444509e-20)
    sum e = 2.398453611784194e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966143888530953 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4713e+04 | 1536 |      1 | 6.215e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2297.2766706876964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.872478108740243, dt = 0.03966143888530953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 337.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2090490511040728e-19,-2.470847768200965e-20,6.361164630287518e-20)
    sum a = (-1.1022567158519654e-19,-3.1075292029869875e-20,-4.152725829281508e-20)
    sum e = 2.3984532679305466e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03966142147862788 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4611e+04 | 1536 |      1 | 6.241e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2287.708919743327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.912139547625554, dt = 0.03966142147862788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 330.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.278663839080716e-19,-2.859133633524468e-20,5.982808536011465e-20)
    sum a = (3.2071559908305635e-20,2.7428554276688147e-20,1.0159379252779182e-19)
    sum e = 2.3984529357103736e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03966140656200537 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4487e+04 | 1536 |      1 | 6.273e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2276.178644526941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.95180096910418, dt = 0.03966140656200537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 303.41 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.237355453219089e-19,-2.634286502489742e-20,6.669563022926163e-20)
    sum a = (4.992897196029085e-20,1.4545212110740864e-20,-3.795577767294988e-20)
    sum e = 2.3984526152559064e-10
    sum de = -2.68833699079734e-24
Info: cfl dt = 0.039661394123732006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4658e+04 | 1536 |      1 | 6.229e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2292.1183297548905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.991462375666185, dt = 0.02937711028026513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 329.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2188005389140306e-19,-2.6171042137881414e-20,6.281323304315003e-20)
    sum a = (-6.367247509245012e-20,1.806837652596627e-20,-1.716690411737221e-20)
    sum e = 2.3984509204920116e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.039661386979149546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5012e+04 | 1536 |      1 | 6.141e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1722.1578869540574 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 574                                                     [SPH][rank=0]
Info: time since start : 204.869847001 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009763310000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008332050000000001 s
rho_t_ampl=0.00065187, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000289281, eps_t_phi=6.28319 rad
vx_t_ampl=-1.41822e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.41s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 22.02083948594645, dt = 0.039661386979149546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.74 us    (2.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 339.25 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.261327860751902e-19,-2.540320241169965e-20,6.243772833123761e-20)
    sum a = (-4.0433122112017715e-20,-8.187913095071502e-20,-4.5000789022946516e-20)
    sum e = 2.3984521404134253e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03966137833772659 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2790e+04 | 1536 |      1 | 6.740e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2118.4697858937266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.060500872925598, dt = 0.03966137833772659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 293.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.272975471191574e-19,-3.0633014416549116e-20,6.010096977211594e-20)
    sum a = (2.6867380476394136e-21,-1.0536808243276097e-19,-8.754363580274935e-22)
    sum e = 2.3984518246103385e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039661372630491985 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8168e+04 | 1536 |      1 | 5.453e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2618.4291019583293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.100162251263324, dt = 0.039661372630491985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 291.93 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.263223983381616e-19,-3.527774773384257e-20,6.094128491767088e-20)
    sum a = (-1.222508135841775e-19,2.8500484868004825e-20,-5.807285896943057e-20)
    sum e = 2.3984515492983444e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.03966136934912557 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0074e+04 | 1536 |      1 | 5.107e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2795.579948022902 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.139823623893815, dt = 0.03966136934912557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 328.47 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.337849952593932e-19,-3.1492194983138275e-20,5.750377166307865e-20)
    sum a = (-1.4529039650183647e-20,-9.920218056949438e-20,1.1587137509576622e-19)
    sum e = 2.3984512859958774e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03966136848262402 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0315e+04 | 1536 |      1 | 5.067e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818.0167251273115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.17948499324294, dt = 0.03966136848262402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 290.31 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3226809715562198e-19,-3.795883815060246e-20,6.554882222404654e-20)
    sum a = (-2.676580247837374e-21,3.895605501619421e-21,6.986750371908937e-20)
    sum e = 2.3984510349528036e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.0396613700159025 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0124e+04 | 1536 |      1 | 5.099e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2800.1948344300226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.219146361725564, dt = 0.0396613700159025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 291.80 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3206494115958119e-19,-3.576015064032666e-20,6.740757489398583e-20)
    sum a = (-9.22632956019236e-20,-2.3737410868414788e-20,-5.384285545646022e-20)
    sum e = 2.398450796205815e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03966137393336843 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0188e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2806.2071697957895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.258807731741467, dt = 0.03966137393336843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 332.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.375095218534743e-19,-3.724943222588608e-20,6.281883210505415e-20)
    sum a = (-3.984396972349943e-20,-2.0119346084303172e-20,7.892318658756274e-21)
    sum e = 2.3984505697811904e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.03966138021888339 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0025e+04 | 1536 |      1 | 5.116e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791.058829768792 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.298469105674833, dt = 0.03966138021888339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 301.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.379835525109028e-19,-3.797558264871364e-20,6.435610326890206e-20)
    sum a = (-1.6294803849104823e-20,6.591090102656086e-20,7.322338807803251e-20)
    sum e = 2.398450355691283e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03966138885577108 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0223e+04 | 1536 |      1 | 5.082e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2809.4352384409863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.338130485893718, dt = 0.03966138885577108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 291.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3806481490931912e-19,-3.365581956727449e-20,6.855580472897293e-20)
    sum a = (-1.122843190117432e-19,-3.320901194557847e-21,3.421939153206063e-22)
    sum e = 2.3984501539356946e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.039661399826825275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6229e+04 | 1536 |      1 | 5.856e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2438.1469666512885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.377791874749487, dt = 0.029378128494268907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.4%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 290.29 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4327915214103266e-19,-3.512555267873571e-20,6.712057305480784e-20)
    sum a = (-4.635511939660667e-20,4.8015063261196896e-20,3.7630787739041705e-20)
    sum e = 2.398449438433348e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.03966140992164975 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0319e+04 | 1536 |      1 | 5.066e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2087.6257123521805 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 584                                                     [SPH][rank=0]
Info: time since start : 205.88504419600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001002861 s
sph::RenderFieldGetter compute custom field took :  0.000811794 s
rho_t_ampl=0.000619022, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000291102, eps_t_phi=6.28319 rad
vx_t_ampl=-1.50497e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.79s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 22.407170003243756, dt = 0.03966140992164975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.86 us    (2.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 345.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4417303852361212e-19,-3.246867962061844e-20,6.916079770336251e-20)
    sum a = (1.2021756065713594e-20,-6.689353093452672e-20,2.5809870567948544e-20)
    sum e = 2.398449864665425e-10
    sum de = 1.4475660719677984e-24
Info: cfl dt = 0.039661424431688845 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1776e+04 | 1536 |      1 | 7.054e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2024.190492128479 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.446831413165405, dt = 0.039661424431688845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.3%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 286.52 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4253424682221643e-19,-3.739937880968259e-20,6.995003681369979e-20)
    sum a = (-1.388181850613037e-19,4.8443610319934986e-20,-6.788129085886615e-20)
    sum e = 2.3984496798383327e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.039661441710480944 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3596e+04 | 1536 |      1 | 6.510e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2193.417626198592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.486492837597094, dt = 0.039661441710480944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 297.54 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.509855362575132e-19,-3.319157637319691e-20,6.539980449364525e-20)
    sum a = (1.008915000504392e-19,-2.0087674051294114e-20,-7.701325970078167e-20)
    sum e = 2.3984495240933574e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.03966146125173508 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0033e+04 | 1536 |      1 | 5.114e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791.7487044663853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.526154279307576, dt = 0.03966146125173508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 294.71 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.422769158938981e-19,-3.534760906008524e-20,6.216425255319012e-20)
    sum a = (2.069821006328889e-20,1.6969178260148452e-20,5.59914581259833e-20)
    sum e = 2.398449380414306e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.03966148303867272 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9554e+04 | 1536 |      1 | 5.197e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2747.2259911345363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.565815740559312, dt = 0.03966148303867272 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 325.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4307599614499187e-19,-3.3939298894301974e-20,6.702253755115558e-20)
    sum a = (-4.299881304534949e-20,-1.6098574797987634e-19,-8.415261337440737e-21)
    sum e = 2.398449248823731e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.03966150705116131 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0181e+04 | 1536 |      1 | 5.089e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2805.5091630949078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.605477223597983, dt = 0.03966150705116131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 293.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4605561742025675e-19,-4.38532585958851e-20,6.541154259849575e-20)
    sum a = (1.2770047317797162e-20,-2.482139062069456e-20,-3.238743598670963e-20)
    sum e = 2.398449129236475e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03966153326864023 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9650e+04 | 1536 |      1 | 5.180e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2756.164537947772 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.645138730649144, dt = 0.03966153326864023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4452517558341616e-19,-4.213709302880982e-20,6.365162094167955e-20)
    sum a = (3.0065394447402865e-20,3.586544522916004e-20,-4.100029836315391e-20)
    sum e = 2.3984490215571227e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.03966156167008268 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0058e+04 | 1536 |      1 | 5.110e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2794.0999555254944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.684800263917783, dt = 0.03966156167008268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 298.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4288638388202048e-19,-3.951111661175708e-20,6.185468541581828e-20)
    sum a = (1.1528256291997848e-20,5.553181362196557e-20,5.265407425684383e-20)
    sum e = 2.398448925679597e-10
    sum de = 1.4475660719677984e-24
Info: cfl dt = 0.039661592234006525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9747e+04 | 1536 |      1 | 5.163e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2765.2253871745593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.724461825587866, dt = 0.039661592234006525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 300.31 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.429541025473674e-19,-3.691914501669789e-20,6.580026917612228e-20)
    sum a = (1.667741430831497e-20,9.311137930128111e-20,6.549259817166659e-20)
    sum e = 2.3984488414851627e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.039661624938481785 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0189e+04 | 1536 |      1 | 5.088e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2806.301322869119 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.764123417821875, dt = 0.029377102719191583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 323.42 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4237172202538382e-19,-3.343843207046939e-20,6.797885011015558e-20)
    sum a = (6.302279914677802e-20,1.1340770157044908e-19,6.930322826050277e-20)
    sum e = 2.398448684662401e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.03966165098757935 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0389e+04 | 1536 |      1 | 5.055e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2092.338172374002 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 594                                                     [SPH][rank=0]
Info: time since start : 206.750069228 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009579870000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008385440000000001 s
rho_t_ampl=0.000584702, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000291727, eps_t_phi=6.28319 rad
vx_t_ampl=-1.54962e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.18s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 22.793500520541066, dt = 0.03966165098757935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.20 us    (2.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 374.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3905350742338427e-19,-2.864184758191654e-20,7.07835031975099e-20)
    sum a = (-2.9961700241090377e-20,4.9116253738727193e-20,6.789932555807776e-20)
    sum e = 2.398448733675736e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.03966168690044631 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1430e+04 | 1536 |      1 | 7.168e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1992.031863192798 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.833162171528645, dt = 0.03966168690044631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 294.36 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.421008473639961e-19,-2.7969118192162466e-20,7.344866443904238e-20)
    sum a = (8.098475188839255e-20,1.0462872885413605e-19,-1.7759501474224603e-20)
    sum e = 2.398448674959291e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.03966172535771985 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1755e+04 | 1536 |      1 | 7.060e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2022.3260942240245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.87282385842909, dt = 0.03966172535771985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.8%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 284.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3672398533544993e-19,-2.271872606167241e-20,7.104560518007327e-20)
    sum a = (9.853489049636607e-21,-1.961903972501044e-20,-4.5518562559393165e-20)
    sum e = 2.398448633270284e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.03966176586758687 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1692e+04 | 1536 |      1 | 7.081e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2016.4256536012522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.91248558378681, dt = 0.03966176586758687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.7%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 294.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.377939402479314e-19,-2.596127299092784e-20,6.868977248074253e-20)
    sum a = (-1.3903488479041388e-20,-7.120278737245318e-21,5.660718051391909e-20)
    sum e = 2.3984486025426313e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.0396618084082653 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2681e+04 | 1536 |      1 | 6.772e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2108.3825579912686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.9521473496544, dt = 0.0396618084082653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 295.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3868782663051087e-19,-2.59955423389579e-20,7.296015928423165e-20)
    sum a = (-2.6086869953063474e-20,-9.979886037703914e-20,-7.555083088927931e-20)
    sum e = 2.3984485826241893e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966185295538728 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0396e+04 | 1536 |      1 | 5.053e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825.542971329259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.991809158062665, dt = 0.03966185295538728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 289.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4004219993744945e-19,-3.1791625230167405e-20,6.734286047489589e-20)
    sum a = (9.491001086023883e-20,9.470937778127127e-20,1.7455135846101074e-20)
    sum e = 2.3984485733303e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03966189948424041 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9505e+04 | 1536 |      1 | 5.206e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2742.6708954140913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.031471011018052, dt = 0.03966189948424041 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 322.10 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.338662576578095e-19,-2.417893623581922e-20,6.987955880662518e-20)
    sum a = (-1.244199270835713e-19,-9.673733522771941e-20,-3.6371413684755194e-20)
    sum e = 2.3984485744673494e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.03966194796973316 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0264e+04 | 1536 |      1 | 5.075e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813.225944963287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.071132910502293, dt = 0.03966194796973316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 300.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.429676462804368e-19,-3.1811715982640446e-20,6.736956609093626e-20)
    sum a = (2.2785214680949564e-21,-9.819156876672878e-21,-8.463090044764884e-20)
    sum e = 2.3984485858334743e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.03966199838640564 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0057e+04 | 1536 |      1 | 5.110e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2794.0195992687754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.110794858472026, dt = 0.03966199838640564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 337.80 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 6.27 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4054331806101673e-19,-3.0478425400811827e-20,6.305590282742403e-20)
    sum a = (5.0193074755143877e-20,-3.1864459167745373e-21,-1.816123656233048e-20)
    sum e = 2.3984486072192235e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.03966205070843857 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9971e+04 | 1536 |      1 | 5.125e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2786.042085134731 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.150456856858433, dt = 0.029374180979935716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 302.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3821379597308236e-19,-3.044004267291402e-20,6.384059122870325e-20)
    sum a = (-5.148396181331971e-20,-8.32991926856703e-20,4.5270012331477253e-20)
    sum e = 2.3984486074220606e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.0396620911038191 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0370e+04 | 1536 |      1 | 5.058e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2090.863110959447 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 604                                                     [SPH][rank=0]
Info: time since start : 207.65893725100003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000980159 s
sph::RenderFieldGetter compute custom field took :  0.000809109 s
rho_t_ampl=0.00054984, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000291201, eps_t_phi=6.28319 rad
vx_t_ampl=-1.55363e-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.17983103783837, dt = 0.0396620911038191 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.57 us    (2.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 340.25 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4165390417270636e-19,-3.4920716942363074e-20,6.656771507446217e-20)
    sum a = (-1.0976010576093642e-19,-2.6908851545768215e-20,-4.549658512203655e-20)
    sum e = 2.3984486602730443e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.0396621462436601 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2242e+04 | 1536 |      1 | 6.906e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2067.559118866663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.219493128942187, dt = 0.0396621462436601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.3%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 338.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4723392219729333e-19,-3.4869769227730974e-20,6.296322633307014e-20)
    sum a = (7.264985390916083e-20,6.112513895947678e-21,1.4543578124670652e-20)
    sum e = 2.39844871161841e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.039662203653835125 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2809e+04 | 1536 |      1 | 6.734e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.3238649613827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.259155275185847, dt = 0.039662203653835125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 364.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4048914312873919e-19,-3.397243078037503e-20,6.473071755810306e-20)
    sum a = (6.722135639828763e-20,5.53369968092258e-20,8.731191867459504e-20)
    sum e = 2.3984487684794654e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966226286834012 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2920e+04 | 1536 |      1 | 6.702e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2130.5902302610452 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.298817478839684, dt = 0.03966226286834012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 319.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3815962104080482e-19,-3.080162331222151e-20,6.963678219933163e-20)
    sum a = (-9.570425028486444e-20,2.2781463371094284e-20,-8.004546114352354e-20)
    sum e = 2.3984488342814923e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966232386123517 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3251e+04 | 1536 |      1 | 6.606e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2161.3762193854013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.338479741708024, dt = 0.03966232386123517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.3%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 345.48 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.451617310376773e-19,-3.054320782715348e-20,6.314310700018342e-20)
    sum a = (-2.1399098249629607e-20,-2.080562251370209e-20,9.55290662957603e-20)
    sum e = 2.398448908758222e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.03966238660478034 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3395e+04 | 1536 |      1 | 6.566e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2174.7243604471287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.37814206556926, dt = 0.03966238660478034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 367.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4432201958737537e-19,-3.223266949084293e-20,7.041386464414172e-20)
    sum a = (-6.083252356446328e-20,-8.414714412200956e-20,-4.0435155050340676e-20)
    sum e = 2.398448991654536e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.03966245107097753 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3043e+04 | 1536 |      1 | 6.666e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2142.0614179859926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.417804452174042, dt = 0.03966245107097753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 343.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4761314672323612e-19,-3.6826574130220715e-20,6.61137745296863e-20)
    sum a = (6.577260020152175e-20,-1.5184394639202103e-20,6.409065795443488e-20)
    sum e = 2.3984490827089166e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966251723154028 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2498e+04 | 1536 |      1 | 6.827e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2091.390805610402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.45746690324502, dt = 0.03966251723154028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 343.37 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4261550922063277e-19,-3.606115481727303e-20,7.072864632716337e-20)
    sum a = (1.2155161836447044e-19,3.888168517431675e-20,3.2286549104499316e-20)
    sum e = 2.398449181655295e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.03966258505790504 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2781e+04 | 1536 |      1 | 6.742e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2117.7286347776885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.49712942047656, dt = 0.03966258505790504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 343.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3658854800475606e-19,-3.344579912058623e-20,7.137849881960104e-20)
    sum a = (8.700917365431873e-20,-1.1246435377890516e-19,-2.7447055791166993e-21)
    sum e = 2.3984492882235616e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.0396626545212399 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2981e+04 | 1536 |      1 | 6.684e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2136.305055066657 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.536792005534465, dt = 0.029369549601209854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 327.17 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3466533790890327e-19,-3.975055235370541e-20,7.060317299366713e-20)
    sum a = (8.168987249131745e-20,1.4472182093238332e-19,-4.9060027069776536e-20)
    sum e = 2.3984490976100454e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.03966270739263984 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3121e+04 | 1536 |      1 | 6.643e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1591.5565010749174 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 614                                                     [SPH][rank=0]
Info: time since start : 208.652163588 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000902633 s
sph::RenderFieldGetter compute custom field took :  0.0008039890000000001 s
rho_t_ampl=0.000515323, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000289594, eps_t_phi=6.28319 rad
vx_t_ampl=-1.5194e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.95s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 23.566161555135675, dt = 0.03966270739263984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.51 us    (2.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 342.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3156382303601393e-19,-3.0233818174849696e-20,6.797718942941477e-20)
    sum a = (5.45609286700208e-20,1.1493077966374828e-19,8.346741602969317e-20)
    sum e = 2.3984494689842244e-10
    sum de = 1.4475660719677984e-24
Info: cfl dt = 0.03966277923662861 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1792e+04 | 1536 |      1 | 7.048e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2025.8113650750843 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.605824262528316, dt = 0.03966277923662861 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 301.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3010109986452025e-19,-2.626588794827259e-20,7.391593772342668e-20)
    sum a = (-5.930123524430584e-20,-1.8695355311061829e-19,6.6184005643146e-20)
    sum e = 2.398449606015445e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039662853036961675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2834e+04 | 1536 |      1 | 6.727e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2122.618840128168 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.645487041764945, dt = 0.039662853036961675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.5%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 314.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.345569880443482e-19,-3.9667954098804716e-20,7.619823016734004e-20)
    sum a = (-1.2794595333985423e-19,-7.694376287710644e-21,2.283912312196321e-20)
    sum e = 2.3984497385943943e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966292836346382 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3285e+04 | 1536 |      1 | 6.597e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2164.5446621859624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.685149894801906, dt = 0.03966292836346382 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 305.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4109861111686154e-19,-3.641810625094157e-20,7.624450581894046e-20)
    sum a = (1.8917209164664654e-20,-2.979783462791018e-20,-1.08610733359355e-20)
    sum e = 2.398449877481092e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.03966300518693167 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3400e+04 | 1536 |      1 | 6.564e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2175.291618750943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.72481282316537, dt = 0.03966300518693167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 328.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3737408452278044e-19,-3.8038553071705186e-20,7.514539877190872e-20)
    sum a = (3.8189941322400683e-20,-5.654308343324698e-20,-8.015685412964313e-20)
    sum e = 2.3984500223588213e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039663083477148 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3432e+04 | 1536 |      1 | 6.555e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2178.2171701912753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.7644758283523, dt = 0.039663083477148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 318.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3528834963009501e-19,-4.081202259356579e-20,7.059189131877317e-20)
    sum a = (-2.754795306313077e-20,6.994222491778792e-20,8.962737555640717e-21)
    sum e = 2.3984501729344673e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.03966316320372091 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3692e+04 | 1536 |      1 | 6.483e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2202.4242941222196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.804138911829448, dt = 0.03966316320372091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.72 us   (7.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 305.11 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.378887463794171e-19,-3.552970878361972e-20,7.27147607434235e-20)
    sum a = (3.98710571896382e-20,5.980916491331328e-20,-4.249361815421103e-20)
    sum e = 2.3984503289124216e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.039663244336065724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4431e+04 | 1536 |      1 | 6.287e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2271.1647877251607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.843802075033167, dt = 0.039663244336065724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.5%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 285.55 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3485495017187468e-19,-3.3358432783877415e-20,7.000886506665663e-20)
    sum a = (-1.5356223147396384e-19,3.120978037340775e-20,-6.763564030845218e-20)
    sum e = 2.398450489995441e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03966332684341168 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4959e+04 | 1536 |      1 | 6.154e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2320.179692458289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.883465319369233, dt = 0.03966332684341168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 288.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (60.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4502629370698344e-19,-3.2687879120773646e-20,6.682760347493648e-20)
    sum a = (-7.53911901307362e-20,-1.2579076052313182e-20,-1.0960983422653473e-19)
    sum e = 2.3984506558843183e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.039663410694812995 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4181e+04 | 1536 |      1 | 6.352e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2247.8429145045025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.923128646212643, dt = 0.02936342622033905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 299.87 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4540551823292624e-19,-3.3925530314101554e-20,6.277666510841795e-20)
    sum a = (-7.574332719054024e-21,6.3376900312403144e-21,5.434363966402318e-20)
    sum e = 2.398450006153334e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.03966347397305579 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4713e+04 | 1536 |      1 | 6.215e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1700.7459587254996 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 624                                                     [SPH][rank=0]
Info: time since start : 209.623188051 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000892595 s
sph::RenderFieldGetter compute custom field took :  0.0007880010000000001 s
rho_t_ampl=0.000481973, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000287001, eps_t_phi=6.28319 rad
vx_t_ampl=-1.45015e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24.34s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 23.95249207243298, dt = 0.03966347397305579 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.16 us    (2.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.02 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4471478784638755e-19,-3.339642533587137e-20,6.733924051291415e-20)
    sum a = (1.5067403039691732e-21,-1.2768020387042393e-20,4.1548076037531454e-20)
    sum e = 2.3984509233181005e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966355973513805 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2543e+04 | 1536 |      1 | 6.814e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2095.592239112597 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.99215554640604, dt = 0.03966355973513805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 318.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4464706918104063e-19,-3.428135751211492e-20,6.873342685627213e-20)
    sum a = (-3.615330246209179e-20,1.4203655761739744e-19,3.3042138119732434e-20)
    sum e = 2.398451116656805e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.03966364710984234 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2995e+04 | 1536 |      1 | 6.680e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2137.687356796993 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.031819106141178, dt = 0.03966364710984234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 302.66 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.466786291414485e-19,-2.557737958044061e-20,6.98753106740562e-20)
    sum a = (-8.682717974119886e-20,4.286191090172845e-20,-4.043761165684381e-20)
    sum e = 2.3984512978537814e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.039663735711378836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3644e+04 | 1536 |      1 | 6.496e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2198.0019041168803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.071482753251022, dt = 0.039663735711378836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 309.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.512699546519703e-19,-2.5843889562225888e-20,6.681416650007115e-20)
    sum a = (-8.274374422077904e-20,3.6115227245711424e-20,7.673176819459603e-20)
    sum e = 2.398451482440772e-10
    sum de = -2.68833699079734e-24
Info: cfl dt = 0.039663825508203486 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3469e+04 | 1536 |      1 | 6.545e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2181.7632061161453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.1111464889624, dt = 0.039663825508203486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.6%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 288.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5443918819020657e-19,-2.4545053496652882e-20,7.218132962262285e-20)
    sum a = (-8.891460760051795e-20,-4.957291991514645e-20,1.124445550143902e-19)
    sum e = 2.398451670108075e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.03966391646852122 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4233e+04 | 1536 |      1 | 6.338e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2252.7398596652765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.150810314470604, dt = 0.03966391646852122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 292.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5801473372052445e-19,-2.821096112104305e-20,7.73495739324711e-20)
    sum a = (1.3202430996037303e-19,5.3307763024651495e-20,4.7009928367483486e-20)
    sum e = 2.3984518605585837e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966400856044531 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4335e+04 | 1536 |      1 | 6.312e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2262.202996141954 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.190474230939124, dt = 0.03966400856044531 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (0.9%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.2%)
   LB compute        : 530.01 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.483986832412605e-19,-2.405554806608846e-20,7.791647935092701e-20)
    sum a = (-1.2661866749905442e-19,3.914545896491186e-20,-1.9551202884842908e-20)
    sum e = 2.3984520534938713e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03966410175200021 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4310e+04 | 1536 |      1 | 6.319e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2259.8760124500145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.23013823949957, dt = 0.03966410175200021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 294.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5875963903934067e-19,-2.278379285350331e-20,7.582095781043675e-20)
    sum a = (-9.652957151878013e-20,7.197841408383475e-20,3.010863271146055e-20)
    sum e = 2.3984522486177753e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.03966419601110298 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4275e+04 | 1536 |      1 | 6.328e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2256.64626973033 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 24.26980234125157, dt = 0.03966419601110298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 296.79 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.617798915138137e-19,-1.9277678794618797e-20,7.800004890596938e-20)
    sum a = (-1.5292906195297007e-19,2.7910485996169703e-20,6.661236874550697e-20)
    sum e = 2.398452445635652e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.03966429130559449 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4640e+04 | 1536 |      1 | 6.234e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290.6500307198944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.309466537262672, dt = 0.029356052467615967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.4%)
   patch tree reduce : 26.59 us   (7.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 321.24 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6748180313602513e-19,-1.9332726662816827e-20,8.067947076845435e-20)
    sum a = (-5.538032452071864e-20,-1.5191354649880263e-19,6.168523104370874e-20)
    sum e = 2.3984511632094634e-10
    sum de = 3.2053248736429822e-24
Info: cfl dt = 0.03966436278709657 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4631e+04 | 1536 |      1 | 6.236e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1694.716908625331 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 634                                                     [SPH][rank=0]
Info: time since start : 210.58009360600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000891975 s
sph::RenderFieldGetter compute custom field took :  0.000826131 s
rho_t_ampl=0.000450532, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000283533, eps_t_phi=6.28319 rad
vx_t_ampl=-1.34977e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24.73s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 24.338822589730288, dt = 0.03966436278709657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.13 us    (2.3%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6815898978949441e-19,-2.7997435704371014e-20,8.30538554947286e-20)
    sum a = (-1.96858160163523e-20,1.5710531965960177e-20,4.3914280975842824e-20)
    sum e = 2.398452755718689e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03966445950323845 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0661e+04 | 1536 |      1 | 5.010e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2850.3611991397083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.378486952517385, dt = 0.03966445950323845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 308.73 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6832151458632705e-19,-2.4049940114114416e-20,8.444325500882805e-20)
    sum a = (2.5949792560943244e-20,9.723150458296507e-21,1.7506022589789464e-20)
    sum e = 2.398452974395458e-10
    sum de = -2.1713491079516976e-24
Info: cfl dt = 0.03966455746888032 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0269e+04 | 1536 |      1 | 5.074e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813.928907562325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.418151412020624, dt = 0.03966455746888032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.9%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 275.90 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6634412955819673e-19,-2.3783522716441917e-20,8.461388900024023e-20)
    sum a = (-8.643610444882035e-20,2.6384617153185296e-20,3.268142373731998e-20)
    sum e = 2.3984531759547213e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.039664656349572336 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0777e+04 | 1536 |      1 | 4.991e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861.1904380977817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.457815969489506, dt = 0.039664656349572336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.8%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 271.53 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7188351638357552e-19,-2.2405983541855845e-20,8.621114922726166e-20)
    sum a = (3.752291246873343e-20,-7.53920696798076e-21,8.987071615498428e-20)
    sum e = 2.3984533780150937e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966475611228576 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1098e+04 | 1536 |      1 | 4.939e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2891.0208835310505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.497480625839078, dt = 0.03966475611228576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.8%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 276.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6801000872573118e-19,-2.3378229149600913e-20,9.091004608049546e-20)
    sum a = (-3.908382770498015e-20,-2.5262345603832766e-20,2.1531690490280005e-20)
    sum e = 2.398453580326651e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03966485672469298 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1508e+04 | 1536 |      1 | 4.875e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2929.144780102402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.537145381951362, dt = 0.03966485672469298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.6%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 269.27 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.711250673316899e-19,-2.4731524512940712e-20,9.04087721058633e-20)
    sum a = (-8.772953095694669e-21,6.349941223963796e-20,1.0803429605901144e-19)
    sum e = 2.3984537826149114e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.03966495815422815 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1700e+04 | 1536 |      1 | 4.845e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2946.9642996110324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.576810238676053, dt = 0.03966495815422815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.9%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 269.50 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7093545506871852e-19,-2.0452009067956777e-20,9.640950466636168e-20)
    sum a = (-1.3628719994396223e-19,-1.9235826146437046e-19,-3.8202566506404686e-20)
    sum e = 2.398453984609031e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.03966506036839878 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1386e+04 | 1536 |      1 | 4.894e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2917.752718617162 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.616475196830283, dt = 0.03966506036839878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 311.16 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7876373278282353e-19,-3.315622908156807e-20,9.199395804252753e-20)
    sum a = (-6.975022530733701e-22,-3.836794750552015e-21,5.36844319444172e-20)
    sum e = 2.3984541860418025e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.039665163334693776 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1214e+04 | 1536 |      1 | 4.921e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2901.826646355136 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.656140257198683, dt = 0.039665163334693776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.7%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 271.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7627168589805655e-19,-2.9569348610585696e-20,9.594571147444416e-20)
    sum a = (-5.3152380430804674e-20,9.956795725305603e-20,2.7618651104240695e-20)
    sum e = 2.3984543866506693e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03966526702061527 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1361e+04 | 1536 |      1 | 4.898e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2915.4556264188263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.695805420533375, dt = 0.02934768649421926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.4%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 308.35 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7868247038440722e-19,-2.4596424452943403e-20,9.623930326121013e-20)
    sum a = (5.849199719341003e-20,-1.0934018059770086e-19,2.7684260692810666e-20)
    sum e = 2.398452397094156e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.039665344431483784 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1592e+04 | 1536 |      1 | 4.862e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2173.000773818516 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 644                                                     [SPH][rank=0]
Info: time since start : 211.386148404 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000898487 s
sph::RenderFieldGetter compute custom field took :  0.0008843200000000001 s
rho_t_ampl=0.000421649, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00027932, eps_t_phi=6.28319 rad
vx_t_ampl=-1.22271e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.11s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 24.725153107027595, dt = 0.039665344431483784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.92 us    (2.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 334.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7483605019270163e-19,-3.1999139292659715e-20,9.733837174173844e-20)
    sum a = (-1.1833836769375865e-19,-8.63824221962858e-20,1.1740247387105788e-19)
    sum e = 2.3984546969646725e-10
    sum de = -3.412120026781239e-24
Info: cfl dt = 0.03966544904432012 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1084e+04 | 1536 |      1 | 4.941e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2889.7774409318117 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.764818451459078, dt = 0.03966544904432012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 306.54 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8292165883512497e-19,-3.497018992434163e-20,1.0377454550049425e-19)
    sum a = (5.779788087360402e-21,-7.373935398916505e-20,4.9382097732522176e-21)
    sum e = 2.3984549115841576e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.03966555453441233 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5019e+04 | 1536 |      1 | 6.139e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2325.9011434883737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.8044839005034, dt = 0.03966555453441233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 296.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.802129122212478e-19,-3.76445944455287e-20,1.0173994956111764e-19)
    sum a = (9.214140200429912e-20,-8.613592691573808e-21,-2.9942601454065885e-20)
    sum e = 2.398455106944671e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.039665660623887516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1149e+04 | 1536 |      1 | 4.931e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2895.810174967493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.84414945503781, dt = 0.039665660623887516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 332.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7489022512497917e-19,-3.669499887965992e-20,9.986047313367431e-20)
    sum a = (-2.6159720423518724e-20,3.490327806340606e-20,-3.9318256650504124e-20)
    sum e = 2.3984553002237885e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03966576727928333 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1324e+04 | 1536 |      1 | 4.904e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2912.0468426849566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.8838151156617, dt = 0.03966576727928333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 279.04 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7827615839232564e-19,-3.444743357098772e-20,9.811493853697167e-20)
    sum a = (-1.0519756068318706e-19,1.1309908235022663e-19,2.2910583401451772e-20)
    sum e = 2.3984554912666207e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.03966587446828187 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1977e+04 | 1536 |      1 | 4.803e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2972.7921356086117 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.923480882940986, dt = 0.03966587446828187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 309.65 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.839374388153289e-19,-2.841044681832724e-20,1.0025788420595023e-19)
    sum a = (-4.117294853093291e-21,2.822623088650067e-20,2.907632376012062e-20)
    sum e = 2.3984556798462155e-10
    sum de = -1.5509636485369269e-24
Info: cfl dt = 0.03966598215864038 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1613e+04 | 1536 |      1 | 4.859e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2938.983892828485 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.963146757409266, dt = 0.03966598215864038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 329.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8219706911591284e-19,-2.8974198094189513e-20,1.0153350988699431e-19)
    sum a = (-1.9817867413778812e-20,-1.8665644903942273e-20,-3.9257552104517477e-20)
    sum e = 2.3984558657413094e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.03966609031818696 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1653e+04 | 1536 |      1 | 4.853e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2942.707257667799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.002812739567908, dt = 0.03966609031818696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 308.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8324670842879022e-19,-3.064434935721363e-20,9.862105112910807e-20)
    sum a = (2.3417114476968095e-20,5.186353683626089e-21,1.1524480478265469e-20)
    sum e = 2.3984560487363655e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966619891482901 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1933e+04 | 1536 |      1 | 4.810e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2968.7717091045656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.042478829886093, dt = 0.03966619891482901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.9%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 273.86 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8154019806204762e-19,-2.996518537162142e-20,1.000853458096298e-19)
    sum a = (9.446753815896614e-21,-1.264113352982122e-19,4.4476376209838844e-21)
    sum e = 2.398456228621907e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.03966630791656134 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1821e+04 | 1536 |      1 | 4.827e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2958.3520461675844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.082145028800923, dt = 0.029338595523977773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 293.80 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8143862006402723e-19,-3.628395848467571e-20,1.0007547752259786e-19)
    sum a = (-6.206415679046055e-21,-5.644496907301716e-20,2.2978339047125462e-20)
    sum e = 2.398453551100468e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.03966638897422031 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1428e+04 | 1536 |      1 | 4.887e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2161.0302821298046 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 654                                                     [SPH][rank=0]
Info: time since start : 212.19667396100002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010834920000000001 s
sph::RenderFieldGetter compute custom field took :  0.000968498 s
rho_t_ampl=0.000395869, rho_t_phi=3.14159 rad
eps_t_ampl=-0.0002745, eps_t_phi=6.28319 rad
vx_t_ampl=-1.0738e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.50s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 25.1114836243249, dt = 0.03966638897422031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.40 us    (2.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 364.18 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8188556325531695e-19,-3.749676407002428e-20,1.0125877763417982e-19)
    sum a = (1.425240890224144e-19,1.5611426625066073e-19,9.5705512241342e-20)
    sum e = 2.398456502244647e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03966649841534834 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0697e+04 | 1536 |      1 | 5.004e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.84835265533 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 25.15115001329912, dt = 0.03966649841534834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 319.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7345458941962428e-19,-2.7088411819352182e-20,1.0649749235429768e-19)
    sum a = (2.428052746014144e-20,-3.288729537997325e-20,2.4957699713133006e-21)
    sum e = 2.398456687619496e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03966660836206555 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1389e+04 | 1536 |      1 | 4.893e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2918.1724482369905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.190816511714466, dt = 0.03966660836206555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 288.26 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7480896272656286e-19,-3.214158656332113e-20,1.0474783903728919e-19)
    sum a = (3.830844898675781e-20,-1.1384421582274935e-19,5.640797276594815e-20)
    sum e = 2.398456854267438e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966671859672031 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1400e+04 | 1536 |      1 | 4.892e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2919.203744375664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.23048312007653, dt = 0.03966671859672031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.7%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 280.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.729602431625917e-19,-3.8263215034514354e-20,1.080546153367041e-19)
    sum a = (-4.499905312303441e-21,2.3247880638534443e-20,5.604485830074107e-20)
    sum e = 2.3984570167696624e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.03966682908621378 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1502e+04 | 1536 |      1 | 4.876e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2928.6865942375484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.27014983867325, dt = 0.03966682908621378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 302.87 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7388121701130994e-19,-3.4621637192332326e-20,1.1027053537242485e-19)
    sum a = (-7.731101429332164e-20,-5.231044696179606e-20,-1.0496266757295732e-20)
    sum e = 2.398457175088957e-10
    sum de = -2.1713491079516976e-24
Info: cfl dt = 0.03966693979919089 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1406e+04 | 1536 |      1 | 4.891e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2919.7672053452134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.309816667759467, dt = 0.03966693979919089 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 275.60 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7861475171906028e-19,-3.819527152203639e-20,1.085344428734064e-19)
    sum a = (-3.308056802197488e-20,5.981510682940843e-20,-2.5817337574658976e-20)
    sum e = 2.3984573290616984e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.039667050704443554 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1465e+04 | 1536 |      1 | 4.882e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925.25045650057 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 25.349483607558657, dt = 0.039667050704443554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 275.83 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.788788545139133e-19,-3.3598576132973414e-20,1.0720647523789341e-19)
    sum a = (1.6794229006038425e-20,-7.749326611932711e-21,-6.582981689339843e-21)
    sum e = 2.398457478531745e-10
    sum de = -1.7577588016751838e-24
Info: cfl dt = 0.039667161770911896 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1373e+04 | 1536 |      1 | 4.896e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916.746436308501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.3891506582631, dt = 0.039667161770911896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.4%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 309.09 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7717911601370539e-19,-3.524591202534842e-20,1.0732683212337024e-19)
    sum a = (7.313615857468346e-20,7.623772635278012e-22,1.5486680043596797e-20)
    sum e = 2.398457623349486e-10
    sum de = -1.137373342260413e-24
Info: cfl dt = 0.03966727296769171 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1446e+04 | 1536 |      1 | 4.885e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2923.5418065310337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.428817820034013, dt = 0.03966727296769171 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 284.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7332592395546513e-19,-3.504713393521189e-20,1.0837886690911813e-19)
    sum a = (-5.671438222805315e-21,3.3345871103718576e-20,-4.061763528275792e-21)
    sum e = 2.3984577633727415e-10
    sum de = -4.549493369041652e-24
Info: cfl dt = 0.03966738426404175 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1369e+04 | 1536 |      1 | 4.897e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916.400546128299 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.468485093001703, dt = 0.029329048620503784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 281.20 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7488345325844448e-19,-3.342267954499513e-20,1.078720225254834e-19)
    sum a = (-5.83362442631121e-20,1.0264850182440094e-20,5.2750031482535183e-20)
    sum e = 2.3984544968268235e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.03966746673562476 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1162e+04 | 1536 |      1 | 4.929e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2142.0888988793763 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 664                                                     [SPH][rank=0]
Info: time since start : 213.19773830300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001072051 s
sph::RenderFieldGetter compute custom field took :  0.0010175590000000001 s
rho_t_ampl=0.000373626, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00026922, eps_t_phi=6.28319 rad
vx_t_ampl=-9.08137e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.88s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 25.497814141622207, dt = 0.03966746673562476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.16 us    (2.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 346.49 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7810008986242361e-19,-3.335405487797315e-20,1.1079760059366734e-19)
    sum a = (7.664737137292174e-20,1.0353483598863801e-19,-1.537007117881279e-20)
    sum e = 2.398457971772133e-10
    sum de = -1.137373342260413e-24
Info: cfl dt = 0.03966757800276879 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0897e+04 | 1536 |      1 | 4.971e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2872.545903549521 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.537481608357833, dt = 0.03966757800276879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 311.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7243203757288565e-19,-2.7397279032733855e-20,1.0883683114310207e-19)
    sum a = (4.596404410422815e-20,7.52820830604016e-20,-1.7437300278263125e-21)
    sum e = 2.398458108842019e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.039667689413719454 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1571e+04 | 1536 |      1 | 4.865e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2935.197845671164 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.5771491863606, dt = 0.039667689413719454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 305.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.711521547978287e-19,-2.4971042919275452e-20,1.0903792337718388e-19)
    sum a = (1.0173713688395899e-19,1.6691215954269958e-20,-6.18142082245121e-20)
    sum e = 2.3984582299901217e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.039667800812915335 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1136e+04 | 1536 |      1 | 4.933e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2894.7356694948603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.61681687577432, dt = 0.039667800812915335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.5%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 300.25 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.659784487653233e-19,-2.5471383997610476e-20,1.0539446114190759e-19)
    sum a = (-5.627759683656546e-20,1.3703668486978554e-19,1.2014071011166289e-20)
    sum e = 2.398458345584097e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.03966791216842415 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8754e+04 | 1536 |      1 | 5.342e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2673.327434580891 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.656484676587233, dt = 0.03966791216842415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 289.41 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.713349951942654e-19,-1.7648591892187624e-20,1.073353369931031e-19)
    sum a = (2.9667547288489655e-20,-4.1833761022742144e-20,-5.2136828707269356e-20)
    sum e = 2.3984584557114397e-10
    sum de = 0
Info: cfl dt = 0.039668023450577204 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4682e+04 | 1536 |      1 | 6.223e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2294.7529102165768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.69615258875566, dt = 0.039668023450577204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.7%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 296.16 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6846372378355562e-19,-2.2855697643378036e-20,1.0399480592152744e-19)
    sum a = (-8.940218199101584e-20,-8.469762280398987e-20,4.881802386020464e-20)
    sum e = 2.398458560280581e-10
    sum de = 1.5509636485369269e-24
Info: cfl dt = 0.039668134629917084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5223e+04 | 1536 |      1 | 6.090e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2344.9859563804494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.735820612206236, dt = 0.039668134629917084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 292.70 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7443651006715476e-19,-2.7065527010618486e-20,1.07933665593927e-19)
    sum a = (-1.0509598268516667e-19,7.733150844800037e-21,5.15053860798072e-20)
    sum e = 2.3984586592067347e-10
    sum de = 7.237830359838992e-25
Info: cfl dt = 0.0396682456772033 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4809e+04 | 1536 |      1 | 6.191e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2306.5546168561505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.775488746836153, dt = 0.0396682456772033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 320.69 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7886531078084392e-19,-2.492533612674173e-20,1.1003009522580296e-19)
    sum a = (-1.2739912511717778e-19,1.020382733239236e-21,3.905663599520719e-20)
    sum e = 2.3984587524132367e-10
    sum de = 9.305781891221561e-25
Info: cfl dt = 0.03966835656341891 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4705e+04 | 1536 |      1 | 6.217e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2296.838849455828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.815156992513355, dt = 0.03966835656341891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.7%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 287.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.843234352078064e-19,-2.5018052502538993e-20,1.1133249775026373e-19)
    sum a = (4.6272164031556675e-20,-9.518344481102979e-21,1.9440425737619483e-20)
    sum e = 2.3984588398307747e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03966846725977684 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4592e+04 | 1536 |      1 | 6.246e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2286.401900250585 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.854825349076773, dt = 0.029319309842740893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.5%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 290.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.795492693008479e-19,-2.550619562401538e-20,1.1151340620447922e-19)
    sum a = (6.061497735203627e-20,-7.037561445628191e-20,4.3191241739483777e-20)
    sum e = 2.398455143131615e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.03966854901509141 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4723e+04 | 1536 |      1 | 6.213e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1698.9166211492895 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 674                                                     [SPH][rank=0]
Info: time since start : 214.08833578300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010159750000000001 s
sph::RenderFieldGetter compute custom field took :  0.000822495 s
rho_t_ampl=0.000355236, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000263626, eps_t_phi=6.28319 rad
vx_t_ampl=-7.30913e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.27s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 25.884144658919514, dt = 0.03966854901509141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.01 us    (2.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.35 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7692855695192175e-19,-2.919006125970922e-20,1.1357491886113414e-19)
    sum a = (1.5703958493952868e-20,-5.2442944746909183e-20,-1.0769549933131008e-20)
    sum e = 2.398458964598883e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.039668659243122024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3969e+04 | 1536 |      1 | 6.408e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2228.4667793788076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.923813207934604, dt = 0.039668659243122024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 336.30 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7731455334439923e-19,-3.091454947720824e-20,1.1207743209995494e-19)
    sum a = (-5.664666356270622e-21,-7.833017690021747e-20,-7.25093061834427e-21)
    sum e = 2.398459041528109e-10
    sum de = 0
Info: cfl dt = 0.03966876927147654 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4522e+04 | 1536 |      1 | 6.264e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2279.8750811783825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.963481867177727, dt = 0.03966876927147654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 332.69 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7785630266717467e-19,-3.4535282667713164e-20,1.1185958606155534e-19)
    sum a = (7.005834523466553e-20,-3.688975948061693e-20,1.1766461978001936e-20)
    sum e = 2.3984591070429263e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966887900690154 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4956e+04 | 1536 |      1 | 6.155e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2320.2054582071187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.003150636449202, dt = 0.03966887900690154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.4%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 339.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7360357048338753e-19,-3.51769037955735e-20,1.1270354669762555e-19)
    sum a = (3.581301616872347e-20,-5.918479088303351e-21,-3.7451547122860444e-20)
    sum e = 2.398459166309081e-10
    sum de = 5.686866711302065e-25
Info: cfl dt = 0.03966898841935664 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7352e+04 | 1536 |      1 | 5.616e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2543.0279196222473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.042819515456102, dt = 0.03966898841935664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 296.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7284512143150192e-19,-3.479729570687775e-20,1.1024167008453e-19)
    sum a = (-1.1596821440661614e-20,-7.026527072672661e-20,9.567720556611888e-21)
    sum e = 2.398459219532024e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03966909748149848 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0957e+04 | 1536 |      1 | 4.962e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2878.163124933142 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.08248850387546, dt = 0.03966909748149848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 273.25 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 10.90 us   (3.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7425366967071804e-19,-3.886089838771013e-20,1.1155381631649643e-19)
    sum a = (-9.006582491141575e-22,-7.738757474143897e-20,2.0923673870617457e-21)
    sum e = 2.3984592666915457e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966920616624988 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0590e+04 | 1536 |      1 | 5.021e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2844.1175529492157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.12215760135696, dt = 0.03966920616624988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 278.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7410468860695481e-19,-4.207214527369535e-20,1.1148854861295254e-19)
    sum a = (9.331970678133569e-20,3.418989763499109e-20,3.21509342348857e-21)
    sum e = 2.398459307774734e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966931444681021 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0859e+04 | 1536 |      1 | 4.977e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2869.1367092988044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.16182680752321, dt = 0.03966931444681021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.8%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 268.02 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6846372378355562e-19,-3.850282271838642e-20,1.1163835799025018e-19)
    sum a = (1.4664476980877505e-20,-6.93621060934165e-20,-1.5482237381720548e-20)
    sum e = 2.398459342776016e-10
    sum de = 2.5849394142282115e-25
Info: cfl dt = 0.03966942229666075 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1267e+04 | 1536 |      1 | 4.912e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907.080005939915 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.20149612197002, dt = 0.03966942229666075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.4%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 301.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6953029276276975e-19,-4.3308153099021426e-20,1.106533314299417e-19)
    sum a = (1.6404846680293582e-20,-2.6863544848864717e-20,-2.0340016670485868e-20)
    sum e = 2.3984593716964604e-10
    sum de = 2.5849394142282115e-25
Info: cfl dt = 0.03966952968957031 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1140e+04 | 1536 |      1 | 4.933e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2895.212552590755 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.241165544266682, dt = 0.029309631950138026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.4%)
   patch tree reduce : 8.25 us    (2.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 299.68 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6902578870593513e-19,-4.325250343409033e-20,1.0996082037845782e-19)
    sum a = (9.31673397843051e-20,1.6693467732155762e-20,-1.1602710406362073e-21)
    sum e = 2.398455440380249e-10
    sum de = 4.652890945610781e-25
Info: cfl dt = 0.039669608748109104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0859e+04 | 1536 |      1 | 4.978e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2119.8239320330076 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 684                                                     [SPH][rank=0]
Info: time since start : 214.94520838000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008826670000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007986800000000001 s
rho_t_ampl=0.0003409, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000257867, eps_t_phi=6.28319 rad
vx_t_ampl=-5.47299e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.66s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 26.27047517621682, dt = 0.039669608748109104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.13 us    (2.3%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 380.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6415343073422358e-19,-4.195208351887372e-20,1.1019586852288588e-19)
    sum a = (-2.1700446310423442e-20,5.417714768309909e-21,-1.1412459940144222e-19)
    sum e = 2.398459405096513e-10
    sum de = -9.822769774067204e-25
Info: cfl dt = 0.03966971527223175 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0332e+04 | 1536 |      1 | 5.064e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2820.171337450059 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.31014478496493, dt = 0.03966971527223175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 317.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6729557680632107e-19,-4.1960743439994005e-20,1.0342795280479015e-19)
    sum a = (5.1364607665645745e-21,-2.5161974505853954e-20,5.2862641580239274e-20)
    sum e = 2.398459417543941e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.039669821278966434 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0893e+04 | 1536 |      1 | 4.972e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2872.270609447461 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.349814500237162, dt = 0.039669821278966434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.7%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 282.59 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.665676011538416e-19,-4.3565536932547057e-20,1.0883717250053028e-19)
    sum a = (-5.3744918752590305e-20,-3.38312896070189e-20,4.849598629301581e-21)
    sum e = 2.3984594241201365e-10
    sum de = 7.754818242684634e-25
Info: cfl dt = 0.03966992673602233 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1171e+04 | 1536 |      1 | 4.928e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2898.2014356945756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.38948432151613, dt = 0.03966992673602233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 289.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6988242982257377e-19,-4.5079655859647174e-20,1.0807722130639473e-19)
    sum a = (-1.1875822341890962e-19,-5.610570781804032e-21,-1.0617572922785961e-19)
    sum e = 2.398459424448398e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.03967003161588831 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0374e+04 | 1536 |      1 | 5.057e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824.0255277587967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.42915424825215, dt = 0.03967003161588831 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 300.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7587891763904434e-19,-4.474240996241101e-20,1.0166304346011697e-19)
    sum a = (9.947533346137155e-20,2.2026434971518316e-20,-4.242822434260384e-20)
    sum e = 2.3984594188338547e-10
    sum de = -5.169878828456423e-26
Info: cfl dt = 0.03967013589409152 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1190e+04 | 1536 |      1 | 4.925e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2899.983893401693 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.468824279868038, dt = 0.03967013589409152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.7%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 274.77 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6761385453345163e-19,-4.3320473399171946e-20,1.0124434280181601e-19)
    sum a = (2.1609026112205087e-20,-3.2707024192666163e-21,-1.6521396076604178e-20)
    sum e = 2.398459407321008e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.039670239546470455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1274e+04 | 1536 |      1 | 4.911e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907.802624191243 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.50849441576213, dt = 0.039670239546470455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 279.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6825379592098013e-19,-4.395216984079991e-20,1.0110279876076498e-19)
    sum a = (-2.9342497694824395e-20,1.233626760339933e-20,-6.086192626515674e-21)
    sum e = 2.3984593899613486e-10
    sum de = -6.72084247699335e-25
Info: cfl dt = 0.03967034254918963 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1267e+04 | 1536 |      1 | 4.913e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907.1134173347004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.5481646553086, dt = 0.03967034254918963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.6%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 271.23 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.704749681443594e-19,-4.3153206973134847e-20,1.0106834092473971e-19)
    sum a = (-3.2085103641375026e-20,3.71396638404602e-20,-5.836053853624029e-20)
    sum e = 2.3984593668119666e-10
    sum de = 6.72084247699335e-25
Info: cfl dt = 0.03967044487874379 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1296e+04 | 1536 |      1 | 4.908e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2909.840708870185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.58783499785779, dt = 0.03967044487874379 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 278.98 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7176162278595106e-19,-4.118789094542035e-20,9.771628179325923e-20)
    sum a = (-1.7816780852777054e-20,1.6399638823949764e-20,-5.941151997583919e-20)
    sum e = 2.398459337936578e-10
    sum de = -3.618915179919496e-25
Info: cfl dt = 0.03967054651196238 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1656e+04 | 1536 |      1 | 4.852e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2943.3274148850924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.627505442736535, dt = 0.029300250777591685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 289.30 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7195800691545716e-19,-4.111873722632535e-20,9.595466290825588e-20)
    sum a = (-1.881563116664426e-20,-7.585765865009594e-20,-3.8951636481187294e-20)
    sum e = 2.3984553801473695e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.039670621083260076 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8902e+04 | 1536 |      1 | 5.315e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1984.7545660551368 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 694                                                     [SPH][rank=0]
Info: time since start : 215.75994107800003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001094092 s
sph::RenderFieldGetter compute custom field took :  0.00099121 s
rho_t_ampl=0.000330706, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000252085, eps_t_phi=6.28319 rad
vx_t_ampl=-3.62307e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.04s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 26.656805693514126, dt = 0.039670621083260076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.15 us    (2.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 379.97 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7276724496635296e-19,-4.5479597734112007e-20,9.470916715547274e-20)
    sum a = (-9.895051380493285e-20,5.971295018068317e-20,3.79666778021004e-22)
    sum e = 2.398459282351443e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.03967072149358458 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0799e+04 | 1536 |      1 | 4.987e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2863.643824440526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.696476314597387, dt = 0.03967072149358458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 307.24 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7832017552480114e-19,-4.042171442669316e-20,9.550437742463844e-20)
    sum a = (-7.056284929150015e-21,3.8056203571491414e-21,-1.645679992418947e-20)
    sum e = 2.3984592329839616e-10
    sum de = 2.3264454728053903e-25
Info: cfl dt = 0.039670821101001494 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0724e+04 | 1536 |      1 | 4.999e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856.6573711490073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.736147036090973, dt = 0.039670821101001494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 292.19 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.767998914877626e-19,-4.137960619038202e-20,9.451756526821037e-20)
    sum a = (-1.2588899887994126e-20,-6.671032185492662e-20,7.388201127050808e-20)
    sum e = 2.3984591836361504e-10
    sum de = 7.754818242684634e-26
Info: cfl dt = 0.039670919931388715 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1021e+04 | 1536 |      1 | 4.952e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2884.267748256238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.775817857191974, dt = 0.039670919931388715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 305.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.773551845436074e-19,-4.5424842497841867e-20,9.924044003038032e-20)
    sum a = (-3.182777271305669e-21,3.282536652825047e-20,1.981877307587321e-20)
    sum e = 2.3984591286536794e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03967101796030411 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0534e+04 | 1536 |      1 | 5.031e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2838.9852453995754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.815488777123363, dt = 0.03967101796030411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 288.79 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7729254477816148e-19,-4.214823122823468e-20,9.895430173620234e-20)
    sum a = (1.103814245154945e-21,1.079519876369943e-19,-1.5061509826255537e-20)
    sum e = 2.398459068414016e-10
    sum de = -2.3264454728053903e-25
Info: cfl dt = 0.0396711151665888 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0892e+04 | 1536 |      1 | 4.972e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2872.351007545506 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.85515979508367, dt = 0.0396711151665888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 295.48 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7718250194697273e-19,-3.637558203728463e-20,9.766492668056722e-20)
    sum a = (-6.008677176233022e-20,4.223610512427605e-20,-3.110898519969016e-20)
    sum e = 2.398459003014269e-10
    sum de = -7.754818242684634e-26
Info: cfl dt = 0.03967120921422441 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7399e+04 | 1536 |      1 | 5.606e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2547.574036940278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.894830910250256, dt = 0.03967120921422441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 294.30 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8077836307689466e-19,-3.6003489794601265e-20,9.611248499843349e-20)
    sum a = (2.880074837204896e-20,-3.9647162352334917e-20,1.168605206147963e-20)
    sum e = 2.3984589325564087e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.03967130204348808 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4554e+04 | 1536 |      1 | 6.256e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2283.011177947919 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.93450211946448, dt = 0.03967130204348808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 299.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7786138156707568e-19,-3.9200506006466026e-20,9.742495133771816e-20)
    sum a = (1.8554914305058582e-20,-9.265487349377149e-21,6.06193646966454e-20)
    sum e = 2.398458857148426e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.03967139399521424 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5021e+04 | 1536 |      1 | 6.139e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2326.4273396340504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.974173421507967, dt = 0.03967139399521424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 324.64 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7734671971043905e-19,-3.896549074258096e-20,1.0080043015110672e-19)
    sum a = (1.4617751101788123e-19,-5.558806673691745e-20,1.4444873438504432e-20)
    sum e = 2.398458776902376e-10
    sum de = -2.3264454728053903e-25
Info: cfl dt = 0.03967148505044671 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4849e+04 | 1536 |      1 | 6.181e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2310.4900506230047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.01384481550318, dt = 0.029291395308252532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.7%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 290.66 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7051390637693388e-19,-4.1512587562155646e-20,1.0030763743155566e-19)
    sum a = (5.1886041388817104e-20,-2.3578531571022833e-20,-2.295226198485588e-20)
    sum e = 2.3984549909674366e-10
    sum de = -1.2924697071141057e-25
Info: cfl dt = 0.03967155161419264 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4966e+04 | 1536 |      1 | 6.152e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1713.9913312961237 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 704                                                     [SPH][rank=0]
Info: time since start : 216.624500949 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000929675 s
sph::RenderFieldGetter compute custom field took :  0.001106253 s
rho_t_ampl=0.00032463, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000246414, eps_t_phi=6.28319 rad
vx_t_ampl=-1.80675e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.43s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 27.043136210811433, dt = 0.03967155161419264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.88 us    (2.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 350.74 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.698621142229697e-19,-4.197916147860805e-20,9.884937844702039e-20)
    sum a = (5.0680649145641765e-20,1.3920745496348302e-19,-1.9270344836960263e-20)
    sum e = 2.398458643368726e-10
    sum de = 0
Info: cfl dt = 0.03967164115594612 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0430e+04 | 1536 |      1 | 5.048e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2829.368257499557 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.082807762425624, dt = 0.03967164115594612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 283.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.67881343261572e-19,-3.322765317803582e-20,9.8157925924783e-20)
    sum a = (-4.690871948581781e-20,4.186231991495901e-20,-5.883218937852135e-20)
    sum e = 2.3984585407532136e-10
    sum de = 9.04728794979874e-26
Info: cfl dt = 0.03967172965924434 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1082e+04 | 1536 |      1 | 4.942e-02 | 0.1% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2890.0363346429817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.12247940358157, dt = 0.03967172965924434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.9%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 277.25 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (60.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7166935610441586e-19,-3.349777404354996e-20,9.503920956243779e-20)
    sum a = (2.0098899874968567e-20,-1.2476228990632626e-19,-4.0262402271589046e-20)
    sum e = 2.3984584437578087e-10
    sum de = 1.2924697071141057e-25
Info: cfl dt = 0.039671817201359295 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1264e+04 | 1536 |      1 | 4.913e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2906.942959263552 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.162151133240812, dt = 0.039671817201359295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 278.45 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6953875759593812e-19,-4.175249077120912e-20,9.381027468639949e-20)
    sum a = (-8.214274106582504e-21,-6.444390575957753e-20,-2.8442809305952726e-20)
    sum e = 2.3984583422201514e-10
    sum de = 1.4217166778255163e-25
Info: cfl dt = 0.03967190376217294 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1662e+04 | 1536 |      1 | 4.851e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2944.004429551441 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.20182295044217, dt = 0.03967190376217294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 282.62 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.704241791453492e-19,-4.311265575172054e-20,9.291634665865225e-20)
    sum a = (1.5463218638644532e-19,3.105600146865728e-20,-3.524311247570544e-20)
    sum e = 2.398458236559141e-10
    sum de = -7.754818242684634e-26
Info: cfl dt = 0.039671989324887004 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1681e+04 | 1536 |      1 | 4.848e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2945.7391917414716 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.241494854204344, dt = 0.039671989324887004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 286.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.610629201444531e-19,-3.998625373199768e-20,9.138329179028702e-20)
    sum a = (1.7464643792973024e-20,4.239960536086832e-20,-9.091581637494765e-20)
    sum e = 2.398458126908173e-10
    sum de = -6.462348535570529e-26
Info: cfl dt = 0.039672073873067835 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1633e+04 | 1536 |      1 | 4.856e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2941.2533921476224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.28116684352923, dt = 0.039672073873067835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 283.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.630792434051579e-19,-3.807914707193946e-20,8.667214934944174e-20)
    sum a = (9.105113149221356e-20,-2.83047322944109e-20,-5.475537544133113e-20)
    sum e = 2.3984580134056494e-10
    sum de = -5.169878828456423e-26
Info: cfl dt = 0.03967215739066304 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1288e+04 | 1536 |      1 | 4.909e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2909.1837898712483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.3208389174023, dt = 0.03967215739066304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 282.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5801769641213338e-19,-4.060453829025258e-20,8.521716531894796e-20)
    sum a = (-1.214534262997174e-20,3.62402521702931e-20,5.804144076640988e-20)
    sum e = 2.3984578961922247e-10
    sum de = -2.5849394142282115e-26
Info: cfl dt = 0.03967223986200643 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1397e+04 | 1536 |      1 | 4.892e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2919.3400401485937 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.36051107479296, dt = 0.03967223986200643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 721.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 268.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.605448723545491e-19,-3.7886508465781597e-20,8.975724580184916e-20)
    sum a = (-9.393594663599275e-20,-6.941190642636525e-20,-2.842258435475949e-20)
    sum e = 2.398457775411344e-10
    sum de = 1.6155871338926322e-26
Info: cfl dt = 0.03967232127181908 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1612e+04 | 1536 |      1 | 4.859e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2939.3203797740016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.400183314654967, dt = 0.029283413453768503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 278.35 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6492008009324102e-19,-4.201480925528149e-20,8.72098247407447e-20)
    sum a = (-8.830175367912825e-20,-7.578464615744332e-20,1.1276371733692561e-21)
    sum e = 2.3984543310560113e-10
    sum de = -7.270142102516845e-27
Info: cfl dt = 0.03967235055741115 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1158e+04 | 1536 |      1 | 4.930e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2138.4551262600253 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 714                                                     [SPH][rank=0]
Info: time since start : 217.43159194600003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010326970000000002 s
sph::RenderFieldGetter compute custom field took :  0.0009057500000000001 s
rho_t_ampl=0.000322548, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000240978, eps_t_phi=6.28319 rad
vx_t_ampl=-6.76438e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.82s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 27.429466728108736, dt = 0.03967235055741115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (1.5%)
   patch tree reduce : 1.47 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 561.57 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.683411953234435e-19,-4.511467084044265e-20,8.768722643531686e-20)
    sum a = (-6.704147869345984e-22,1.0825675139023458e-20,-3.558513693909797e-20)
    sum e = 2.398457581488526e-10
    sum de = -8.077935669463161e-28
Info: cfl dt = 0.03967236868679603 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1095e+04 | 1536 |      1 | 4.940e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2891.240418225625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.469139078666146, dt = 0.03967236868679603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 287.20 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6663087578177514e-19,-4.296718978432841e-20,8.554723874063795e-20)
    sum a = (-2.3220730347462e-20,1.1086750102731063e-19,9.334540343343189e-20)
    sum e = 2.398457438527845e-10
    sum de = -5.816113682013476e-26
Info: cfl dt = 0.039672290651491735 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1589e+04 | 1536 |      1 | 4.862e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2937.2096585031454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.50881144735294, dt = 0.039672290651491735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 294.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6799942768427073e-19,-3.6584409636876994e-20,9.180795468295087e-20)
    sum a = (2.1788480575374448e-20,-4.214316390134775e-20,-5.279957039248938e-21)
    sum e = 2.3984573059294727e-10
    sum de = -7.754818242684634e-26
Info: cfl dt = 0.03967221268934487 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1709e+04 | 1536 |      1 | 4.844e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2948.350596500549 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.548483738004432, dt = 0.03967221268934487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 279.40 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6624255156017632e-19,-4.1291444622275944e-20,8.964214012116056e-20)
    sum a = (-8.570474286307352e-20,9.780110188423424e-20,5.0267106558133355e-20)
    sum e = 2.398457170200608e-10
    sum de = 1.9387045606711586e-26
Info: cfl dt = 0.0396721348246633 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1900e+04 | 1536 |      1 | 4.815e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2966.088345376741 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.58815595069378, dt = 0.0396721348246633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 305.18 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.717717805857531e-19,-3.4635538035551e-20,9.273818101043062e-20)
    sum a = (-7.990802510937637e-20,-1.9131584371228982e-20,4.239992887458462e-20)
    sum e = 2.398457031768298e-10
    sum de = -1.1632227364026952e-25
Info: cfl dt = 0.039672057078618185 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1172e+04 | 1536 |      1 | 4.928e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2898.3793406667214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.62782808551844, dt = 0.039672057078618185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 280.20 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7483181777611746e-19,-3.771398623805656e-20,9.42642195419975e-20)
    sum a = (2.508299364450255e-20,-4.3449327338132126e-20,2.548355769831916e-20)
    sum e = 2.39845689078532e-10
    sum de = -6.462348535570529e-26
Info: cfl dt = 0.03967197947223346 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1781e+04 | 1536 |      1 | 4.833e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2955.0714806259925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.66750014259706, dt = 0.03967197947223346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 284.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7175823685268371e-19,-3.9920095356944236e-20,9.493964909845023e-20)
    sum a = (1.4707478333372804e-19,5.541695476362457e-20,3.0313371631385065e-20)
    sum e = 2.3984567474077154e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039671902026357314 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1899e+04 | 1536 |      1 | 4.815e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2966.0364136475323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.707172122069295, dt = 0.039671902026357314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 298.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6349232726377418e-19,-3.576046311170729e-20,9.623804234750449e-20)
    sum a = (-3.698793501249269e-20,-1.8618109575181165e-20,-1.9296985947724878e-21)
    sum e = 2.398456601791762e-10
    sum de = -1.550963648536927e-25
Info: cfl dt = 0.03967182476165854 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1857e+04 | 1536 |      1 | 4.822e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2962.10164020674 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 27.74684402409565, dt = 0.03967182476165854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.6%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 272.95 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.686093189140515e-19,-3.7967627028165556e-20,9.552191572148897e-20)
    sum a = (7.183257426675507e-20,1.6037800271756675e-20,3.602171194898534e-20)
    sum e = 2.398456454094649e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.039671747457222524 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1463e+04 | 1536 |      1 | 4.882e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925.410185596435 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.78651584885731, dt = 0.02928139654873263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 310.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6434981486372965e-19,-3.681060006419088e-20,9.732948260770582e-20)
    sum a = (-6.246708284927478e-20,4.5855962072285033e-20,4.490684260297999e-20)
    sum e = 2.3984534800757773e-10
    sum de = -2.455692443516801e-25
Info: cfl dt = 0.039671689765855285 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1951e+04 | 1536 |      1 | 4.807e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2192.722329915906 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 724                                                     [SPH][rank=0]
Info: time since start : 218.236653418 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0010361930000000001 s
sph::RenderFieldGetter compute custom field took :  0.00097566 s
rho_t_ampl=0.000324241, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000235885, eps_t_phi=6.28319 rad
vx_t_ampl=1.55524e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28.20s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 27.815797245406042, dt = 0.039671689765855285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (2.2%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 371.59 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6880739601019127e-19,-3.455478484975497e-20,9.92410974528496e-20)
    sum a = (-1.3783457144713956e-19,1.456309076423358e-20,1.632950929773335e-20)
    sum e = 2.398456221304858e-10
    sum de = 1.2924697071141057e-25
Info: cfl dt = 0.03967161142149291 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1522e+04 | 1536 |      1 | 4.873e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2930.905492791707 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.855468935171896, dt = 0.03967161142149291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 313.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7577395370775661e-19,-3.4597775290551265e-20,9.93220598498021e-20)
    sum a = (-8.463140201732469e-20,4.149672178647201e-20,9.402844213449651e-20)
    sum e = 2.3984560535180407e-10
    sum de = 3.877409121342317e-25
Info: cfl dt = 0.03967153350743536 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1873e+04 | 1536 |      1 | 4.819e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2963.5424941512497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.89514054659339, dt = 0.03967153350743536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.7%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 278.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7803914306361138e-19,-3.2417320237342015e-20,1.0459353327827428e-19)
    sum a = (6.051678528728321e-20,9.581767243616962e-20,-4.485618756405585e-20)
    sum e = 2.3984558996812186e-10
    sum de = 0
Info: cfl dt = 0.03967145586791269 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1699e+04 | 1536 |      1 | 4.846e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2947.3506295333514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.934812080100823, dt = 0.03967145586791269 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.6%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 280.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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: 3.3209635416666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.728027972656601e-19,-2.753860537431555e-20,1.0005913989254684e-19)
    sum a = (8.703880057040801e-20,1.050464964768863e-20,-5.47221760669445e-20)
    sum e = 2.398455744264759e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.039671378525477224 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1738e+04 | 1536 |      1 | 4.840e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2950.987476357461 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.974483535968737, dt = 0.039671378525477224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 284.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6880739601019127e-19,-2.8814063951411857e-20,9.769253666831409e-20)
    sum a = (-1.220662802211071e-19,-9.311485120551032e-21,9.437739663114383e-21)
    sum e = 2.3984555876733853e-10
    sum de = 2.5849394142282115e-25
Info: cfl dt = 0.03967130149954356 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1686e+04 | 1536 |      1 | 4.848e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2946.1306580360106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.014154914494213, dt = 0.03967130149954356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.8%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 271.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7778011916865938e-19,-2.9576553638505176e-20,9.933960023550772e-20)
    sum a = (-5.048426501613567e-20,-2.6206260473067456e-20,2.140701404340336e-20)
    sum e = 2.398455430061821e-10
    sum de = 5.169878828456423e-26
Info: cfl dt = 0.039671223990366405 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1738e+04 | 1536 |      1 | 4.840e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2951.0144083669084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.053826215993755, dt = 0.039671223990366405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.7%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 274.68 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7837435045707868e-19,-3.095126238450057e-20,1.0042626103092172e-19)
    sum a = (-8.48074705472267e-20,-7.674432016530318e-20,6.520549284889668e-20)
    sum e = 2.398455271585909e-10
    sum de = -1.809457589959748e-25
Info: cfl dt = 0.03967114558758243 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1409e+04 | 1536 |      1 | 4.890e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2920.3688371283924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.093497439984123, dt = 0.03967114558758243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.6%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 278.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8244593521106279e-19,-3.4998325574900076e-20,1.0388180726240625e-19)
    sum a = (4.303521182797346e-20,5.260472225768867e-20,-7.295490994396226e-20)
    sum e = 2.398455112400272e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.0396710675912017 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1807e+04 | 1536 |      1 | 4.829e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2957.371795381027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.133168585571706, dt = 0.0396710675912017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 278.59 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7816442259450321e-19,-3.0345831725010464e-20,9.824711737209398e-20)
    sum a = (-2.6501699683520716e-20,-2.6250244539788395e-20,-3.0135565829188035e-20)
    sum e = 2.398454952659178e-10
    sum de = -4.3943970041879595e-25
Info: cfl dt = 0.039670990020193454 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1273e+04 | 1536 |      1 | 4.912e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907.765532323306 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.172839653162907, dt = 0.02928810954044181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 316.94 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.803280339523376e-19,-3.2678842250051324e-20,9.821384816631878e-20)
    sum a = (-1.650981061158132e-20,-1.0520114501098179e-20,3.4343438233576146e-20)
    sum e = 2.3984525265994644e-10
    sum de = 5.686866711302065e-25
Info: cfl dt = 0.03967093323539605 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2063e+04 | 1536 |      1 | 4.791e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2200.944259135654 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 734                                                     [SPH][rank=0]
Info: time since start : 219.03844592700003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001043616 s
sph::RenderFieldGetter compute custom field took :  0.001030993 s
rho_t_ampl=0.00032941, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00023123, eps_t_phi=6.28319 rad
vx_t_ampl=3.02824e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28.59s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 28.20212776270335, dt = 0.03967093323539605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.81 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 345.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8081899427610282e-19,-3.286590183677039e-20,1.0052051847858128e-19)
    sum a = (7.813718201055418e-20,3.183303016803236e-20,1.2360849972845989e-20)
    sum e = 2.39845470408007e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.039670856240626856 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1090e+04 | 1536 |      1 | 4.941e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2890.701686640706 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.241798695938744, dt = 0.039670856240626856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 290.85 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.758247427067668e-19,-3.0762969445136275e-20,1.0057484908524907e-19)
    sum a = (4.5368119849175174e-20,-3.146881749466158e-20,1.6328447487163292e-20)
    sum e = 2.3984545277604776e-10
    sum de = 2.5849394142282115e-26
Info: cfl dt = 0.039670779932400396 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6533e+04 | 1536 |      1 | 5.789e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2467.039564877052 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.28146955217937, dt = 0.039670779932400396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 319.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7474124406121594e-19,-3.3266906775244454e-20,1.0130131032745759e-19)
    sum a = (-7.038678076159814e-20,7.247164602493852e-20,-7.081466565358056e-20)
    sum e = 2.398454367492811e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.03967070411544726 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0929e+04 | 1536 |      1 | 4.966e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2875.737636942128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.32114033211177, dt = 0.03967070411544726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 319.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7983707362857236e-19,-2.83303615607734e-20,9.676352504726471e-20)
    sum a = (-4.6079165835317926e-20,1.4013551149682887e-20,-1.3537186828577244e-20)
    sum e = 2.3984542071697014e-10
    sum de = -5.686866711302065e-25
Info: cfl dt = 0.03967062881045775 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4903e+04 | 1536 |      1 | 6.168e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2315.471110459723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.36081103622722, dt = 0.03967062881045775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.3%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 342.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8116774540263952e-19,-2.893402650896979e-20,9.736261529092114e-20)
    sum a = (3.850144718299656e-20,-3.699270970745173e-21,1.33633893602554e-20)
    sum e = 2.398454047148329e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.039670554034954286 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1136e+04 | 1536 |      1 | 4.933e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2895.006214066596 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.400481665037677, dt = 0.039670554034954286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 291.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7790709166618488e-19,-2.943194717407074e-20,9.842632973701398e-20)
    sum a = (8.983219551596884e-20,-3.5155381295927833e-20,-3.9977706830595393e-20)
    sum e = 2.398453887569865e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03967047980622536 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1190e+04 | 1536 |      1 | 4.925e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2900.0169603062814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.440152219072633, dt = 0.03967047980622536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 295.61 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.95 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.734342738200202e-19,-3.145048253375588e-20,9.578235950613223e-20)
    sum a = (-1.124231422757044e-19,8.067371556151148e-20,1.2591754123901438e-20)
    sum e = 2.398453728574992e-10
    sum de = 9.822769774067204e-25
Info: cfl dt = 0.03967040614129768 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3767e+04 | 1536 |      1 | 6.463e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2209.78357733768 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 28.47982269887886, dt = 0.03967040614129768 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 284.30 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8179075712383126e-19,-2.595267258816576e-20,9.73246073758682e-20)
    sum a = (-1.271451801221268e-19,-3.114827806991884e-20,-1.4159310143704234e-20)
    sum e = 2.398453570302127e-10
    sum de = 5.169878828456423e-26
Info: cfl dt = 0.039670333056932953 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6864e+04 | 1536 |      1 | 5.718e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2497.7079762149606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.519493105020157, dt = 0.039670333056932953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.8%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 269.66 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8716761915237743e-19,-2.940622201702e-20,9.623229003450637e-20)
    sum a = (-4.893689351295834e-20,-4.1552209429205736e-20,2.778754244822e-20)
    sum e = 2.398453412887641e-10
    sum de = 3.618915179919496e-25
Info: cfl dt = 0.03967026056962501 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0911e+04 | 1536 |      1 | 4.969e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.0186325644477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.55916343807709, dt = 0.029294841923569237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 292.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8709651455376316e-19,-3.0829848240317276e-20,9.787834450447812e-20)
    sum a = (-8.959179425398724e-20,1.0360163873258351e-19,-8.315431658837077e-20)
    sum e = 2.3984515574109415e-10
    sum de = -3.618915179919496e-25
Info: cfl dt = 0.0396702076587355 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8814e+04 | 1536 |      1 | 5.331e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1978.3959861889582 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 744                                                     [SPH][rank=0]
Info: time since start : 219.900343826 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00092179 s
sph::RenderFieldGetter compute custom field took :  0.000785566 s
rho_t_ampl=0.000337687, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000227091, eps_t_phi=6.28319 rad
vx_t_ampl=4.32352e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28.97s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 28.58845828000066, dt = 0.0396702076587355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.15 us    (2.3%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 370.06 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.912036516070544e-19,-2.4594013959435695e-20,9.29545833861037e-20)
    sum a = (1.117967446212453e-19,5.828511138025445e-20,-8.436562919920787e-20)
    sum e = 2.39845317058448e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.03967013601570619 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0162e+04 | 1536 |      1 | 5.092e-02 | 0.0% |   1.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2804.3773359663815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.628128487659392, dt = 0.03967013601570619 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 278.92 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8277267777136174e-19,-2.3180459564978588e-20,8.958376088931564e-20)
    sum a = (-1.2573324594964332e-19,-6.345697565023062e-20,-9.137487328531178e-20)
    sum e = 2.3984530010446687e-10
    sum de = -4.652890945610781e-25
Info: cfl dt = 0.039670065248310876 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6641e+04 | 1536 |      1 | 5.766e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2476.988347856453 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.667798623675097, dt = 0.039670065248310876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.4%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 308.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.925072359149828e-19,-2.8112683085328137e-20,8.581988487089855e-20)
    sum a = (1.3418792131820742e-19,-1.2644691735669846e-20,1.2569670724409454e-19)
    sum e = 2.3984528481672267e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.03966999513454434 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0885e+04 | 1536 |      1 | 4.973e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2871.5397822360765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.70746868892341, dt = 0.03966999513454434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 301.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8206163178521897e-19,-2.760667784323631e-20,9.51118945172778e-20)
    sum a = (1.798269158287703e-20,1.0687784329340957e-20,-5.0245786113998056e-20)
    sum e = 2.398452696587229e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966992569229349 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0720e+04 | 1536 |      1 | 5.000e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856.2428486791828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.747138684057955, dt = 0.03966992569229349 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 274.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8361916108819835e-19,-2.671965591130432e-20,8.962882898804851e-20)
    sum a = (-2.6796275877779858e-20,1.3010438660052391e-20,3.24941543911984e-20)
    sum e = 2.3984525465956783e-10
    sum de = 1.809457589959748e-24
Info: cfl dt = 0.0396698569364382 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0903e+04 | 1536 |      1 | 4.970e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2873.2892882788533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.78680860975025, dt = 0.0396698569364382 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.7%)
   patch tree reduce : 1.31 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 265.33 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.855762305167246e-19,-2.615740582069925e-20,9.255901108983026e-20)
    sum a = (-2.4158633862516968e-21,5.92436479261573e-21,-8.855665904051735e-20)
    sum e = 2.398452398308018e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.039669788881599895 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1112e+04 | 1536 |      1 | 4.937e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2892.6986454949806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.826478466686687, dt = 0.039669788881599895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 284.69 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.851462169917716e-19,-2.606286421525006e-20,8.664495289619499e-20)
    sum a = (1.9599474718034964e-20,4.9656649018853236e-20,6.178958535632625e-20)
    sum e = 2.398452251837859e-10
    sum de = 4.652890945610781e-25
Info: cfl dt = 0.03966972154211264 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0817e+04 | 1536 |      1 | 4.984e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2865.235391735121 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.866148255568287, dt = 0.03966972154211264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.6%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 742.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 278.42 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8393405288206157e-19,-2.3225524881873768e-20,9.207823042866553e-20)
    sum a = (-1.4065166792557182e-20,9.893114719248476e-20,6.413352619592434e-20)
    sum e = 2.398452107295657e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.03966965493202148 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0918e+04 | 1536 |      1 | 4.968e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.5933166585974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.9058179771104, dt = 0.03966965493202148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 295.53 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8518346225771242e-19,-1.832364580448754e-20,9.46688770226409e-20)
    sum a = (-1.3960541454596175e-19,-4.855009031606948e-20,-3.1728251683786067e-20)
    sum e = 2.398451964788498e-10
    sum de = 1.3958672836832342e-24
Info: cfl dt = 0.039669589065080266 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1132e+04 | 1536 |      1 | 4.934e-02 | 0.0% |   1.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2894.540726834906 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.945487632042422, dt = 0.029301165255542827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 274.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9171154159715638e-19,-2.2671666879777025e-20,9.183780045195582e-20)
    sum a = (-2.3415421510334422e-20,1.2056456591183165e-19,-4.7975749441320114e-20)
    sum e = 2.398450653510836e-10
    sum de = -5.169878828456423e-26
Info: cfl dt = 0.039669541141997784 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1105e+04 | 1536 |      1 | 4.938e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2136.1331141140836 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 754                                                     [SPH][rank=0]
Info: time since start : 220.910654453 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001032537 s
sph::RenderFieldGetter compute custom field took :  0.0008861930000000001 s
rho_t_ampl=0.000348648, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000223528, eps_t_phi=6.28319 rad
vx_t_ampl=5.41943e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 29.36s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 28.974788797297965, dt = 0.039669541141997784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.10 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 349.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9096663627834015e-19,-1.541091655070549e-20,8.969658917728556e-20)
    sum a = (-6.65132731037538e-20,-8.847532905113614e-21,3.0402831563607306e-20)
    sum e = 2.398451747826147e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966947634970621 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3415e+04 | 1536 |      1 | 6.560e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2177.0000227926976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.01445833843996, dt = 0.03966947634970621 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 309.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9447446314331108e-19,-1.832886358055773e-20,9.245727475687476e-20)
    sum a = (-2.0640649197744e-20,-1.0119495439979876e-19,8.984860098564974e-20)
    sum e = 2.3984515980591505e-10
    sum de = 1.5509636485369269e-24
Info: cfl dt = 0.03966941258843554 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5686e+04 | 1536 |      1 | 9.792e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1458.383430487425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.054127814789666, dt = 0.03966941258843554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 285.62 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9443383194410293e-19,-2.4174703819235037e-20,9.720060725195633e-20)
    sum a = (-5.59525472429002e-20,-5.497253448940806e-20,8.346052043450096e-20)
    sum e = 2.398451464175702e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966934961670066 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2687e+04 | 1536 |      1 | 6.770e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2109.3719825217236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.0937972273781, dt = 0.03966934961670066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 313.62 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 6.76 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9727124402213927e-19,-2.543904568964695e-20,1.0038472611474769e-19)
    sum a = (-1.9006936396249336e-20,-7.275391514534897e-20,2.9673759557306756e-20)
    sum e = 2.3984513326599554e-10
    sum de = -1.3958672836832342e-24
Info: cfl dt = 0.039669287449305396 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0429e+04 | 1536 |      1 | 7.519e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1899.3470361526681 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.133466576994802, dt = 0.039669287449305396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 292.15 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9731187522134742e-19,-2.8677690859863836e-20,1.0049502010133301e-19)
    sum a = (2.0491668133980757e-20,1.0210288711491698e-19,7.376523227018322e-20)
    sum e = 2.398451203726615e-10
    sum de = -1.550963648536927e-25
Info: cfl dt = 0.03966922609827337 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6225e+04 | 1536 |      1 | 5.857e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2438.241690712255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.17313586444411, dt = 0.03966922609827337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 289.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9573403031876397e-19,-2.1159371529041112e-20,1.0429576843100847e-19)
    sum a = (-7.187151249932957e-20,2.7534197709232174e-20,7.42125739927559e-21)
    sum e = 2.398451077457276e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03966916557535303 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1148e+04 | 1536 |      1 | 4.931e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2895.9395049241202 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.212805090542382, dt = 0.03966916557535303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.5%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 298.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.003930744946327e-19,-2.1545976331402585e-20,1.0327425644984868e-19)
    sum a = (-1.655044181078948e-20,7.812799965051178e-20,3.5753005848637e-20)
    sum e = 2.398450953930433e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03966910589198913 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5613e+04 | 1536 |      1 | 5.997e-02 | 0.1% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2381.313682517828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.252474256117736, dt = 0.03966910589198913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 324.61 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9998676250255113e-19,-1.7443481710052108e-20,1.0525449463495538e-19)
    sum a = (-5.2632639674267e-20,-3.9367488893657736e-20,-9.264314257727447e-20)
    sum e = 2.3984508332213876e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966904705932203 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4302e+04 | 1536 |      1 | 6.320e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2259.4724847136363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.292143362009725, dt = 0.03966904705932203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 293.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0273614031563644e-19,-2.1335486350999517e-20,9.90327492483189e-20)
    sum a = (9.82648623182952e-20,-9.489144113247573e-21,-4.4843703935033406e-20)
    sum e = 2.398450715400955e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.03966898908818665 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5178e+04 | 1536 |      1 | 6.101e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2340.889347433132 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.331812409069048, dt = 0.02930690552622295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 314.85 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9692587882886991e-19,-2.10209582804365e-20,9.866659814410483e-20)
    sum a = (2.4954328180343385e-21,-2.0464233477419063e-20,-5.984532584410754e-21)
    sum e = 2.3984498809123867e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966894707331591 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5196e+04 | 1536 |      1 | 6.096e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1730.6885850614533 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 764                                                     [SPH][rank=0]
Info: time since start : 221.88756644 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000985249 s
sph::RenderFieldGetter compute custom field took :  0.000968457 s
rho_t_ampl=0.000361828, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000220582, eps_t_phi=6.28319 rad
vx_t_ampl=6.30066e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 29.75s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 29.36111931459527, dt = 0.03966894707331591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.77 us    (2.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 365.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9816513040471873e-19,-2.199387842957467e-20,9.899861906955437e-20)
    sum a = (4.646854816106277e-20,-6.25576565641763e-20,-2.1990347940894268e-20)
    sum e = 2.3984505383403976e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.03966889036599654 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4709e+04 | 1536 |      1 | 6.216e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2297.273443810776 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.400788261668588, dt = 0.03966889036599654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 307.43 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.954157525916334e-19,-2.5310267801922268e-20,9.780881944685564e-20)
    sum a = (-6.81757663380209e-20,2.8238154397596425e-21,-3.666974335022858e-20)
    sum e = 2.39845041803008e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.0396688348095341 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0907e+04 | 1536 |      1 | 7.347e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1943.8113389878133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.440457152034583, dt = 0.0396688348095341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 301.31 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.004607931599796e-19,-2.3901296321047726e-20,9.606301579182257e-20)
    sum a = (-3.225270733810867e-20,4.7451540139041117e-20,-2.4791739268240713e-20)
    sum e = 2.39845031165907e-10
    sum de = 2.5849394142282115e-25
Info: cfl dt = 0.03966878015025663 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4414e+04 | 1536 |      1 | 6.292e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2269.8480458625822 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.480125986844115, dt = 0.03966878015025663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 333.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0101608621582443e-19,-2.1134069613648793e-20,9.53151510281453e-20)
    sum a = (-9.465884338857122e-20,-1.1768411214107946e-19,-1.517859929872923e-20)
    sum e = 2.3984502083740436e-10
    sum de = -1.809457589959748e-24
Info: cfl dt = 0.03966872639970095 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4881e+04 | 1536 |      1 | 6.173e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2313.287977069149 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.519794766994373, dt = 0.03966872639970095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.6%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 306.51 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0604758305110127e-19,-2.907780632954013e-20,9.490370609343433e-20)
    sum a = (1.3515629823266851e-19,-5.439099053101494e-20,-2.2074376733830177e-20)
    sum e = 2.398450108310495e-10
    sum de = 0
Info: cfl dt = 0.03966867356690694 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0779e+04 | 1536 |      1 | 4.990e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861.615933109542 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.559463493394073, dt = 0.03966867356690694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 306.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9611325484470676e-19,-2.9980098026929745e-20,9.389127149439378e-20)
    sum a = (-4.4265998570653904e-20,5.796228380529588e-22,4.064885871527926e-20)
    sum e = 2.39845001151191e-10
    sum de = 7.237830359838992e-25
Info: cfl dt = 0.03966862166063027 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1692e+04 | 1536 |      1 | 4.847e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2946.5358484870735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.59913216696098, dt = 0.03966862166063027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.8%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 283.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0138176700869786e-19,-2.886668148664944e-20,9.67478294677532e-20)
    sum a = (7.78764651489685e-22,-4.085919750560215e-20,4.934651710695153e-20)
    sum e = 2.3984499180189004e-10
    sum de = 1.7060600133906196e-24
Info: cfl dt = 0.039668570689316084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6457e+04 | 1536 |      1 | 5.806e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2459.8295945439286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.638800788621612, dt = 0.039668570689316084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.6%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 306.24 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.004675650265143e-19,-3.13092157105324e-20,9.887784732991738e-20)
    sum a = (5.1334134266239627e-20,1.2483734255603546e-20,2.602689502376834e-20)
    sum e = 2.398449827867547e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03966852066109851 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1607e+04 | 1536 |      1 | 4.860e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2938.5918614776815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.678469359310927, dt = 0.03966852066109851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 309.70 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.975082593508535e-19,-2.975574026906257e-20,9.94477677143843e-20)
    sum a = (-1.435297112028163e-20,1.595044980661005e-19,-3.3877415644186894e-21)
    sum e = 2.398449741090594e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.03966847158380046 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1693e+04 | 1536 |      1 | 4.847e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2946.5506331559645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.718137879972026, dt = 0.029311951920547585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 305.43 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.991605947853186e-19,-2.2164669665048283e-20,9.876504883691099e-20)
    sum a = (-4.414410497302943e-21,2.4416738529492095e-20,2.2588687129341258e-21)
    sum e = 2.398449285909259e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.039668436192312286 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1736e+04 | 1536 |      1 | 4.840e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2180.276164262305 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 774                                                     [SPH][rank=0]
Info: time since start : 222.762922696 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001047425 s
sph::RenderFieldGetter compute custom field took :  0.000994796 s
rho_t_ampl=0.000376734, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000218277, eps_t_phi=6.28319 rad
vx_t_ampl=6.95825e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 30.13s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 29.747449831892574, dt = 0.039668436192312286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.64 us    (2.2%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 370.10 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9921476971759613e-19,-2.317610480510252e-20,9.89374112107991e-20)
    sum a = (-2.788823935649909e-20,-1.0925991678507238e-19,8.31840691033967e-21)
    sum e = 2.398449613100625e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.03966838852453128 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1371e+04 | 1536 |      1 | 4.896e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916.650946299176 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 29.787118268084885, dt = 0.03966838852453128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.7%)
   patch tree reduce : 1.35 us    (0.5%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 271.65 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.007790708871102e-19,-3.0161708377296676e-20,9.938757521019108e-20)
    sum a = (-2.1822339908047912e-20,2.2266615684916974e-19,2.9825696823174304e-20)
    sum e = 2.3984495280705204e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.039668342091070924 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1783e+04 | 1536 |      1 | 4.833e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2954.9521107128753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.826786656609418, dt = 0.039668342091070924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.5%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 285.93 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0160523860434273e-19,-1.4745554211068262e-20,1.009972909210643e-19)
    sum a = (-1.0394815130753623e-20,7.308814709905663e-21,1.1658837505172156e-19)
    sum e = 2.398449454181479e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.03966829663321507 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1587e+04 | 1536 |      1 | 4.863e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2936.7162229867 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 29.86645499870049, dt = 0.03966829663321507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.6%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 282.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.017203603354325e-19,-1.872652557124538e-20,1.0734301896695345e-19)
    sum a = (2.1246731252599016e-21,-9.809587647302077e-20,-2.386986554990825e-21)
    sum e = 2.3984493837161034e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.039668252159144754 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1855e+04 | 1536 |      1 | 4.822e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2961.6473689721756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.906123295333707, dt = 0.039668252159144754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 310.84 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0140208260830194e-19,-2.4708530587216955e-20,1.048885564142598e-19)
    sum a = (4.3102084010003556e-20,-2.389678284554975e-20,-2.512388927723131e-20)
    sum e = 2.3984493167363087e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.039668208674874576 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1605e+04 | 1536 |      1 | 4.860e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2938.4004154773497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.945791547492853, dt = 0.039668208674874576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 326.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9888294825739618e-19,-2.4185370831657363e-20,1.0344097013643395e-19)
    sum a = (-3.414375106792167e-20,1.1911459950844874e-19,-5.8177622197843306e-21)
    sum e = 2.3984492532478377e-10
    sum de = 2.9985297205047253e-24
Info: cfl dt = 0.03966816618613316 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1520e+04 | 1536 |      1 | 4.873e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2930.4707228225457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.985459756167728, dt = 0.03966816618613316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.7%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 280.77 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0167972913622435e-19,-1.6623940370034185e-20,1.0359310991627693e-19)
    sum a = (-1.319074952626496e-19,-2.7753678268301174e-20,1.5353764182764007e-20)
    sum e = 2.398449193253304e-10
    sum de = -2.3781442610899546e-24
Info: cfl dt = 0.03966812469833917 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1834e+04 | 1536 |      1 | 4.825e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2959.6483015842095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 30.02512792235386, dt = 0.03966812469833917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 310.37 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0887145139606823e-19,-2.063794441902067e-20,1.0462208276234323e-19)
    sum a = (1.8416937524414214e-20,-6.331461765710652e-20,3.9838923438129583e-20)
    sum e = 2.398449136751254e-10
    sum de = -1.137373342260413e-24
Info: cfl dt = 0.03966808421660204 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1085e+04 | 1536 |      1 | 4.941e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2890.031111296553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.064796047052198, dt = 0.03966808421660204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 297.44 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.051604685350565e-19,-2.3855070396167352e-20,1.066880567076861e-19)
    sum a = (3.458222942604304e-20,-3.118323187906837e-20,1.6990181140426918e-20)
    sum e = 2.3984490837371993e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.03966804474572334 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1409e+04 | 1536 |      1 | 4.890e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2920.141466796138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.1044641312688, dt = 0.029316217921081744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.7%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 276.27 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0377900776197916e-19,-2.413178446981106e-20,1.0673296164366248e-19)
    sum a = (4.5404518631799145e-20,1.503081148371865e-19,5.2865437944333153e-20)
    sum e = 2.398448892861313e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.03966801648191075 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1873e+04 | 1536 |      1 | 4.819e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2190.0065511517905 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 784                                                     [SPH][rank=0]
Info: time since start : 223.56498355500003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001058565 s
sph::RenderFieldGetter compute custom field took :  0.000966984 s
rho_t_ampl=0.00039286, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000216618, eps_t_phi=6.28319 rad
vx_t_ampl=7.38939e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 30.52s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 30.13378034918988, dt = 0.03966801648191075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.66 us    (2.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 338.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0186934139919576e-19,-1.5509075549703974e-20,1.0935589213058238e-19)
    sum a = (2.3400184810631362e-20,-2.2015314958258466e-20,5.924730493430368e-20)
    sum e = 2.398449008336051e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.03966797852178758 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1130e+04 | 1536 |      1 | 4.934e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2894.2277692896337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 30.173448365671792, dt = 0.03966797852178758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 286.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.013479076760244e-19,-1.9800150782483458e-20,1.1183269095266125e-19)
    sum a = (-4.2452831305989876e-20,-6.971444816089884e-20,1.3641168852529153e-19)
    sum e = 2.398448960438011e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.039667941843240406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2134e+04 | 1536 |      1 | 4.780e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2987.5239993681066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 30.21311634419358, dt = 0.039667941843240406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 270.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0442233508277497e-19,-2.3511828024341017e-20,1.1877433943528915e-19)
    sum a = (-9.438162010230722e-20,-1.4605948280696528e-19,7.202171312627357e-20)
    sum e = 2.3984489203859317e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.03966790618932911 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1678e+04 | 1536 |      1 | 4.849e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2945.1397019780547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 30.25278428603682, dt = 0.03966790618932911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.7%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 278.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0914232605745595e-19,-3.081932671721504e-20,1.2035418109546584e-19)
    sum a = (-8.9743314767701e-20,-1.1032560952179058e-20,3.926591898827656e-20)
    sum e = 2.398448883727702e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.03966787156488311 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1833e+04 | 1536 |      1 | 4.825e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2959.5778704766876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 30.29245219222615, dt = 0.03966787156488311 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 279.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1256889052401054e-19,-2.8579029261395984e-20,1.2126209964226022e-19)
    sum a = (7.169713693606122e-22,-2.6795803037489592e-20,9.149610673109081e-20)
    sum e = 2.398448850462195e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.03966783797292687 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9601e+04 | 1536 |      1 | 5.189e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2752.018512150182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.332120063791034, dt = 0.03966783797292687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 270.01 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1086238015726794e-19,-2.9954339804124444e-20,1.2592748256881873e-19)
    sum a = (-4.9494726018753666e-20,-9.197381814701821e-21,1.0076990146253414e-19)
    sum e = 2.3984488205614544e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.03966780541620591 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1862e+04 | 1536 |      1 | 4.821e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2962.278462185946 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.371787901763962, dt = 0.03966780541620591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 275.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1374719530104712e-19,-2.997013862165509e-20,1.3010873910524537e-19)
    sum a = (-5.740426613127499e-21,-3.225521041572916e-20,2.552083944811615e-20)
    sum e = 2.398448793994401e-10
    sum de = -1.137373342260413e-24
Info: cfl dt = 0.039667773897164645 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1539e+04 | 1536 |      1 | 4.870e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2932.231394182847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.411455707180167, dt = 0.039667773897164645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 277.17 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1315804291252884e-19,-3.170718851931295e-20,1.2962861141926848e-19)
    sum a = (1.4389369902905603e-20,6.046711391077729e-21,6.744319598498624e-20)
    sum e = 2.398448770726497e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.039667743417948 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1890e+04 | 1536 |      1 | 4.817e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2964.8597118575785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 30.45112348107733, dt = 0.039667743417948 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 302.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 3.3209635416666674
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1215580666539429e-19,-3.070742559061978e-20,1.3313541409305627e-19)
    sum a = (-6.704888542248217e-20,-4.9668205500073324e-20,9.23498114533407e-20)
    sum e = 2.398448750721126e-10
    sum de = -2.1713491079516976e-24
Info: cfl dt = 0.039667713980402704 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1533e+04 | 1536 |      1 | 4.871e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2931.696052315903 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.49079122449528, dt = 0.02931964199190773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.7%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 282.94 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.320963541666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1573812406224683e-19,-3.326909572819659e-20,1.3633707211879283e-19)
    sum a = (6.7255215730961086e-21,1.410035206198866e-20,5.319071799219417e-20)
    sum e = 2.398448704381391e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.0396676931378249 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2123e+04 | 1536 |      1 | 4.782e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2207.4105162141173 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 794                                                     [SPH][rank=0]
Info: time since start : 224.366706104 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001050359 s
sph::RenderFieldGetter compute custom field took :  0.001051311 s
rho_t_ampl=0.000409701, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000215596, eps_t_phi=6.28319 rad
vx_t_ampl=7.59718e-06, vx_t_phi=4.71239 rad

make gifs

441 from matplotlib.animation import PillowWriter
442 from shamrock.utils.plot import show_image_sequence
443
444 keep_list = []

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

448 ani0 = show_image_sequence(f"_to_trash/dump_dustywave_tvi_{0:02d}_*.png")
449 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
450 ani0.save(f"_to_trash/dustywave_tvi_scan_{0:04}.gif", writer=writer)
451 plt.show()
453 ani1 = show_image_sequence(f"_to_trash/dump_dustywave_tvi_{1:02d}_*.png")
454 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
455 ani1.save(f"_to_trash/dustywave_tvi_scan_{1:04}.gif", writer=writer)
456 plt.show()
458 ani2 = show_image_sequence(f"_to_trash/dump_dustywave_tvi_{2:02d}_*.png")
459 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
460 ani2.save(f"_to_trash/dustywave_tvi_scan_{2:04}.gif", writer=writer)
461 plt.show()
462
463 plt.show()

Total running time of the script: (4 minutes 9.378 seconds)

Estimated memory usage: 971 MB

Gallery generated by Sphinx-Gallery